added css to remove circumstances where horizontal scrolling might happen

This commit is contained in:
Pagwin 2024-12-23 03:22:22 -05:00
parent afcb2740f4
commit b91762edaf
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -8,8 +8,14 @@
body { body {
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
font-family: "Atkinson Hyperlegible", Georgia, serif; font-family: "Atkinson Hyperlegible", Georgia, serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
/*make the width and scrolling behavior correct
* If horizontal scrolling is needed the layout broke*/
width: 100vw;
overflow: hidden scroll;
} }
.dt-subtitle { .dt-subtitle {