add .stretch for equally stretched child elements
This commit is contained in:
parent
b5f3d35a94
commit
436340aece
1 changed files with 9 additions and 1 deletions
|
@ -38,6 +38,15 @@
|
||||||
flex-direction: column-reverse;
|
flex-direction: column-reverse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vertical.stretch > *,
|
||||||
|
.horizontal.stretch > * {
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
-moz-flex: 1;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.fullHeight {
|
.fullHeight {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -106,7 +115,6 @@ body.fit {
|
||||||
flex: 3;
|
flex: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.justify-start {
|
.justify-start {
|
||||||
-webkit-box-pack: start;
|
-webkit-box-pack: start;
|
||||||
-ms-flex-pack: start;
|
-ms-flex-pack: start;
|
||||||
|
|
Loading…
Reference in a new issue