Replace html padding with body margin, reduce min width.
This looks better on my phone which was starting off in a slightly zoomed in state.
This commit is contained in:
parent
994c3b650c
commit
0cb64d0ca3
1 changed files with 6 additions and 6 deletions
|
@ -42,8 +42,6 @@ html
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
padding-top: 30px;
|
|
||||||
padding-bottom: 30px;
|
|
||||||
background-color: var(--color_htmlbg);
|
background-color: var(--color_htmlbg);
|
||||||
color: var(--color_maintext);
|
color: var(--color_maintext);
|
||||||
|
|
||||||
|
@ -64,12 +62,14 @@ a
|
||||||
|
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
width: 80%;
|
width: 90%;
|
||||||
min-width: 30em;
|
min-width: 10em;
|
||||||
max-width: 70em;
|
max-width: 70em;
|
||||||
margin: auto;
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 64px;
|
||||||
|
margin-bottom: 64px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
padding-bottom: 64px;
|
|
||||||
box-shadow: #000 0px 0px 40px -10px;
|
box-shadow: #000 0px 0px 40px -10px;
|
||||||
background-color: var(--color_bodybg);
|
background-color: var(--color_bodybg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue