forked from p96170835/amis
还原 Hbox 样式代码
This commit is contained in:
parent
4e726ede7b
commit
888fbf2c39
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue