24 lines
398 B
SCSS
24 lines
398 B
SCSS
/*
|
|
* Split section
|
|
* Simple Section that is split into multiple columns
|
|
*
|
|
* Dependencies:
|
|
* styles/tools/_flex.scss
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/05/28
|
|
*/
|
|
.c-split-section {
|
|
@extend %t-flexbox;
|
|
@include t-align-items(stretch);
|
|
@include t-flex-wrap(wrap);
|
|
|
|
&__split {
|
|
width: 100%;
|
|
}
|
|
|
|
@include t-media-query($s-small-up) {
|
|
@include t-flex-wrap(nowrap);
|
|
}
|
|
}
|