9 lines
180 B
SCSS
9 lines
180 B
SCSS
.horizontal-split {
|
|
display : flex;
|
|
flex-direction : row;
|
|
justify-content: space-between;
|
|
align-items : flex-start;
|
|
.column {
|
|
width: calc(50% - 1em);
|
|
}
|
|
};
|