Files
TechRadarAJR/styles/components/split.css
2017-04-03 16:01:59 +02:00

26 lines
306 B
CSS

.split {
display: flex;
align-items: center;
justify-content: space-between;
&--align-top {
align-items: flex-start;
}
&--overview {
min-height: 40px;
}
&__left {
flex: 0 1 auto;
}
&__right {
flex: 0 1 auto;
}
@media (--until-sm) {
display: block;
}
}