Remove dashboard edit-list title columns after the second column on screen-sm-max and below, and all but the first column on screen-xs-max and below

This commit is contained in:
Kevin MacMartin 2017-01-03 23:33:24 -05:00
parent 26bbfd557c
commit 40f4ca4f7f

View file

@ -272,6 +272,14 @@ body {
.column {
float: left;
margin-right: 10px;
@media (max-width: $screen-sm-max) {
&:nth-child(n+4) { display: none; }
}
@media (max-width: $screen-xs-max) {
&:nth-child(n+2) { display: none; }
}
}
}