Files

12 lines
183 B
CSS
Raw Permalink Normal View History

2024-12-03 17:40:13 +08:00
.vxe-row {
position: relative;
display: flex;
flex-direction: row;
flex-grow: 1;
}
.vxe-row.is--vertical {
flex-direction: column;
}
.vxe-row.is--wrap {
flex-wrap: wrap;
}