20 lines
340 B
SCSS
20 lines
340 B
SCSS
/*
|
|
* Panel Rows/Cols
|
|
* An extension of the generic Row/Col system
|
|
* for grids of panels with evenly spaced gutters
|
|
*/
|
|
|
|
.panel-row {
|
|
@include grid-row;
|
|
@include grid-pad;
|
|
|
|
> .col {
|
|
@include grid-pad;
|
|
margin-bottom: $site-margins-mobile;
|
|
|
|
@include media($medium-screen) {
|
|
margin-bottom: $site-margins;
|
|
}
|
|
}
|
|
}
|