schlechtenburg/packages/layout/lib/style.scss

18 lines
227 B
SCSS
Raw Normal View History

2020-05-20 14:21:08 +00:00
.sb-layout {
display: flex;
&_vertical {
flex-direction: column;
}
&_horizontal {
flex-direction: row;
}
2020-05-27 13:57:57 +00:00
2022-12-29 02:47:45 +00:00
> *:not(.sb-block-placeholder) {
2020-12-30 01:32:46 +00:00
flex-basis: auto;
flex-grow: 1;
flex-shrink: 1;
2020-05-27 13:57:57 +00:00
}
2020-05-20 14:21:08 +00:00
}