Use flex-grow insted of the flex <value> notation

This commit is contained in:
Hannu Lyytikainen 2018-01-30 15:18:28 +02:00
parent e5c180fcf2
commit ccb2ab27f6

View file

@ -11,13 +11,15 @@
}
.root {
/* Expand to available space */
flex-grow: 1;
/* Dimensions */
width: 100%;
height: auto;
/* Layout */
display: flex;
flex: 1;
flex-direction: column;
@media (--viewportMedium) {