fix: apply max-width including padding to all body>div-s

btw the fix doesn't work
so it's just a code cleanup
This commit is contained in:
DarkCat09 2024-07-11 20:01:23 +04:00
parent a6f1c1f49a
commit a0259cc51d
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -6,14 +6,13 @@ body {
body > div { body > div {
width: fit-content; width: fit-content;
margin: auto; margin: auto;
max-width: calc(100vw - 0.5rem * 2);
} }
body > div#options { #options {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
row-gap: 0.25rem; row-gap: 0.25rem;
max-width: calc(100vw - 0.5rem * 2);
} }
select, input, button { select, input, button {