switch to column in tablet

since that’s whats in the specs, and it handles centering with `align-items`. Fixes 
This commit is contained in:
Matthew Taylor 2016-11-29 12:49:26 -05:00
parent 4ea8cf7709
commit 971c520f83

View file

@ -1,4 +1,5 @@
@import "../../../colors";
@import "../../../frameless";
.title-banner.mod-splash-hoc {
background: url("/images/blocks-pattern.png");
@ -36,3 +37,9 @@
.ttt-tile.mod-banner {
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;
}
}