responsive for landscape #830

This commit is contained in:
2022-03-17 18:27:28 +01:00
parent 006dd606ea
commit 2b40b9910d
3 changed files with 19 additions and 13 deletions
+3 -3
View File
@@ -6,7 +6,7 @@
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
@media only screen and (max-width: $small-bp) {
@media only screen and (max-width: $small-bp), (orientation: portrait) {
flex-wrap:wrap;
}
}
@@ -20,7 +20,7 @@
// small
.small-row {
@media only screen and (max-width: $small-bp) {
@media only screen and (max-width: $small-bp), (orientation: portrait) {
@include row;
}
}
@@ -68,7 +68,7 @@
// small
.small-col-#{$c} {
@media only screen and (max-width: $small-bp) {
@media only screen and (max-width: $small-bp), (orientation: portrait) {
@include col($c);
}
}