Added Split Section (for contact page)
This commit is contained in:
23
public/styles/components/_split-section.scss
Normal file
23
public/styles/components/_split-section.scss
Normal file
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user