added css to remove circumstances where horizontal scrolling might happen
This commit is contained in:
parent
afcb2740f4
commit
b91762edaf
1 changed files with 6 additions and 0 deletions
|
@ -8,8 +8,14 @@
|
|||
body {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
|
||||
font-family: "Atkinson Hyperlegible", Georgia, serif;
|
||||
-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 {
|
||||
|
|
Loading…
Reference in a new issue