2024-10-06 01:24:59 +02:00
|
|
|
/* Ensure the body width is fixed and prevents resizing by the user */
|
|
|
|
body {
|
2025-06-16 11:26:26 +02:00
|
|
|
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 */
|
2024-10-06 01:24:59 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|