19 lines
186 B
Plaintext
Raw Normal View History

2021-04-01 17:47:56 +08:00
.layout {
display: flex;
2021-04-03 11:42:08 +08:00
&.vertical {
display: flex;
2021-04-01 17:47:56 +08:00
flex-direction: column;
}
2021-04-03 11:42:08 +08:00
&.horizontal {
display: flex;
2021-04-01 17:47:56 +08:00
flex-direction: row;
}
}
.flex1 {
flex: 1;
}