fixing footer-issue

This commit is contained in:
stefan
2025-09-27 11:15:03 +02:00
parent 7f64167983
commit bacd7cbe27
6 changed files with 29 additions and 26 deletions
@@ -15,7 +15,6 @@
if ('serviceWorker' in navigator) {
const isLocalhost = ['localhost', '127.0.0.1', '::1'].includes(location.hostname);
if (isLocalhost) {
// Unregister any existing service workers to avoid dev reload loops
navigator.serviceWorker.getRegistrations().then(regs => {
for (const reg of regs) reg.unregister();
}).catch(console.error);
+7 -1
View File
@@ -1,6 +1,12 @@
html, body {
height: 100%;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden; /* Verhindert Scrollbalken durch die Canvas */
}
#ComposeTarget {
height: 100vh;
display: flex;
flex-direction: column;
}