spee.ch/client/scss/horizontal-split/_horizontal-split.scss

29 lines
434 B
SCSS
Raw Normal View History

.horizontal-split {
display : flex;
flex-direction : row;
justify-content: space-between;
.column {
2018-06-03 05:58:54 +02:00
width: 50%;
}
};
2018-06-11 01:07:15 +02:00
2018-10-22 22:26:19 +02:00
@media (max-width: $break-point-tablet) {
2018-06-11 01:07:15 +02:00
.horizontal-split {
display : flex;
flex-direction : column;
justify-content: space-between;
2018-06-11 01:07:15 +02:00
.column {
width: 100%;
padding-left: 0;
padding-right: 0;
padding-bottom: $secondary-padding;
}
};
}