31 lines
596 B
SCSS
31 lines
596 B
SCSS
//
|
|
// Grid
|
|
// --------------------------------------------------
|
|
|
|
// Tiny grid gutters
|
|
.row.gutters-tiny {
|
|
margin-right: (-($space-row-gutter-tiny / 2));
|
|
margin-left: (-($space-row-gutter-tiny / 2));
|
|
|
|
> .col,
|
|
> [class*="col-"] {
|
|
padding-left: ($space-row-gutter-tiny / 2);
|
|
padding-right: ($space-row-gutter-tiny / 2);
|
|
}
|
|
|
|
.push,
|
|
.block {
|
|
margin-bottom: $space-row-gutter-tiny;
|
|
}
|
|
}
|
|
|
|
// Equal height of elements inside columns
|
|
.row.row-deck > div {
|
|
display: flex;
|
|
align-items: stretch;
|
|
|
|
> .block {
|
|
min-width: 100%;
|
|
}
|
|
}
|