26 lines
306 B
CSS
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;
|
|
}
|
|
}
|