2018-06-01 14:53:12 -07:00
|
|
|
.horizontal-split {
|
|
|
|
display : flex;
|
|
|
|
flex-direction : row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : flex-start;
|
|
|
|
.column {
|
2018-06-02 20:58:54 -07:00
|
|
|
width: 50%;
|
2018-06-01 14:53:12 -07:00
|
|
|
}
|
|
|
|
};
|
2018-06-10 16:07:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: $break-point-large ) {
|
|
|
|
|
|
|
|
.horizontal-split {
|
|
|
|
display : flex;
|
|
|
|
flex-direction : column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : flex-start;
|
|
|
|
.column {
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-bottom: $secondary-padding;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|