Merge pull request #1085 from mewtaylor/issue/gh-1083

Fix GH-1083: switch to column in tablet
This commit is contained in:
Matthew Taylor 2016-11-29 12:55:59 -05:00 committed by GitHub
commit 0c28c5c66a

View file

@ -1,4 +1,5 @@
@import "../../../colors"; @import "../../../colors";
@import "../../../frameless";
.title-banner.mod-splash-hoc { .title-banner.mod-splash-hoc {
background: url("/images/blocks-pattern.png"); background: url("/images/blocks-pattern.png");
@ -36,3 +37,9 @@
.ttt-tile.mod-banner { .ttt-tile.mod-banner {
background-color: $background-color; background-color: $background-color;
} }
@media only screen and (min-width: $tablet) and (max-width: $desktop - 1) {
.flex-row.mod-hoc-banner-header {
flex-direction: column;
}
}