UI: Remove page scrolling - fit exactly to viewport

This commit is contained in:
2026-02-14 15:05:43 -05:00
parent 5c4c755d66
commit 9ee9232429
2 changed files with 32 additions and 7 deletions

View File

@@ -1 +1,18 @@
/* You can add global styles to this file, and also import other style files */
/* Global styles - No page scroll */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body {
background-color: #ffffff;
}