8 lines
163 B
SCSS
8 lines
163 B
SCSS
|
.vertical-split {
|
||
|
flex : 1 0 auto;
|
||
|
display : flex;
|
||
|
flex-direction : column;
|
||
|
justify-content: space-between;
|
||
|
align-items : center;
|
||
|
};
|