Whoops forgot to move media query when moving overriding style

This commit is contained in:
Justin Nguyen 2021-01-16 00:58:38 -08:00
parent 2cb2e4aa06
commit 4e8deb4a3e
2 changed files with 7 additions and 7 deletions

View File

@ -26,12 +26,6 @@
max-height: 80em; max-height: 80em;
width: auto; width: auto;
height: auto; height: auto;
@media (--tablet) {
top: auto;
transform: none;
max-height: 20em;
}
} }
&-2col { &-2col {
@ -78,6 +72,12 @@
/* Vertical Align */ /* Vertical Align */
top: 50%; top: 50%;
transform: translateY(-50%); transform: translateY(-50%);
@media (--tablet) {
top: auto;
transform: none;
max-height: 20em;
}
} }
.section > .post { .section > .post {

File diff suppressed because one or more lines are too long