Search/static/css/style-fixedwidth.css

10 lines
320 B
CSS
Raw Normal View History

/* 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 */
box-sizing: border-box;
}