improvements for images (text overlapping fix, image viewer, page width fix)
This commit is contained in:
parent
94f4ce3b32
commit
4d64f55922
3 changed files with 236 additions and 12 deletions
7
static/css/style-fixedwidth.css
Normal file
7
static/css/style-fixedwidth.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
/* 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 */
|
||||
box-sizing: border-box;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue