18 lines
211 B
CSS
18 lines
211 B
CSS
.split {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
&--align-top {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
&__left {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
&__right {
|
|
flex: 0 1 auto;
|
|
}
|
|
}
|