2018-06-01 23:53:12 +02:00
|
|
|
.horizontal-split {
|
|
|
|
display : flex;
|
|
|
|
flex-direction : row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : flex-start;
|
|
|
|
.column {
|
2018-06-03 05:58:54 +02:00
|
|
|
width: 50%;
|
2018-06-01 23:53:12 +02:00
|
|
|
}
|
|
|
|
};
|
2018-06-11 01:07:15 +02: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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|