Fix login and register page cutoff

This commit is contained in:
DariusIII
2026-03-10 13:32:27 +01:00
parent a87a764f02
commit 0ff28f5c59
5 changed files with 29 additions and 22 deletions
+9 -2
View File
@@ -152,9 +152,16 @@
display: none !important;
}
/* Fixed layout - ensure html and body have proper height constraints */
html, body {
/* Default document flow - public/guest pages need vertical scrolling */
html,
body {
height: 100%;
overflow-x: hidden;
}
/* App shells keep a fixed viewport and scroll inside their content panels */
html.app-shell,
body.app-shell {
overflow: hidden;
}