mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-04 12:09:00 -08:00
15 lines
227 B
SCSS
15 lines
227 B
SCSS
|
@use "mixins/mixins";
|
||
|
|
||
|
@include mixins.b(container) {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex: 1;
|
||
|
flex-basis: auto;
|
||
|
box-sizing: border-box;
|
||
|
min-width: 0;
|
||
|
|
||
|
@include mixins.when(vertical) {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|