css formatting
Some checks failed
Run Integration Tests / test (push) Failing after 37s

This commit is contained in:
partisan 2025-06-16 11:26:26 +02:00
parent 70abf0a2bd
commit ec8ab05349
16 changed files with 152 additions and 96 deletions

View file

@ -1,7 +1,10 @@
/* Ensure the body width is fixed and prevents resizing by the user */
body {
overflow-x: hidden; /* Prevent horizontal scrolling by user */
width: 100vw; /* Fix the width of the viewport */
max-width: 100vw; /* Prevent page from extending wider than the viewport */
overflow-x: hidden;
/* Prevent horizontal scrolling by user */
width: 100vw;
/* Fix the width of the viewport */
max-width: 100vw;
/* Prevent page from extending wider than the viewport */
box-sizing: border-box;
}