added box-sizing and fixed redirect page not being in the center

pull/2/head
suhankins 10 months ago
parent 16052bb8ca
commit a660cd9745

@ -2,11 +2,15 @@ html {
font-family: Noto Sans, sans-serif;
background-color: #f1f1f1;
color: #0f0f0f;
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
min-height: 100vh;
min-height: 100dvh;
margin: 0;
}
@ -37,7 +41,8 @@ p {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
height: 100vh;
height: 100dvh;
}
.centered {

Loading…
Cancel
Save