还原 Hbox 样式代码

This commit is contained in:
2betop 2020-07-29 15:07:53 +08:00
parent 4e726ede7b
commit 888fbf2c39
1 changed files with 7 additions and 4 deletions

View File

@ -1,12 +1,15 @@
.#{$ns}Hbox { .#{$ns}Hbox {
display: flex; display: table;
flex-grow: row; table-layout: fixed;
border-spacing: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
& > .#{$ns}Hbox-col { & > .#{$ns}Hbox-col {
flex-grow: 1; display: table-cell;
width: 0; vertical-align: top;
height: 100%;
float: none;
} }
} }