remove vertical centering on small devices

This commit is contained in:
Milan Pässler 2020-07-21 10:54:36 +02:00
parent 6b583c8c47
commit b95aaeb02a

View file

@ -466,6 +466,9 @@ tbody tr:hover td {
} }
@media (min-width: 800px) { @media (min-width: 800px) {
#content {
justify-content: center;
}
.center { .center {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -904,7 +907,6 @@ form>div.history {
#content { #content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center;
min-height: 100vh; min-height: 100vh;
} }