super-productivity/app-src/styles/components/_simple-grid.scss
2018-04-05 21:39:39 +02:00

19 lines
No EOL
304 B
SCSS

.gt-xs-2-col {
@media (min-width: $layout-gt-xs) {
@include clearfix;
> * {
float: left;
@include row-machine(2, 2%);
}
}
}
.gt-md-2-col {
@media (min-width: $layout-gt-md) {
@include clearfix;
> * {
float: left;
@include row-machine(2, 2%);
}
}
}