Files
NativeScript/e2e/ui-tests-app/app/flexbox/flexbox-demo-page.css
2019-09-19 15:40:31 +03:00

27 lines
327 B
CSS

#body {
flex-flow: row wrap;
}
.flex-item {
align-items: center;
justify-content: center;
}
.header,
.footer {
flex: 1;
width: 100%;
background-color: lightgreen;
}
.main {
flex: 5;
height: 60%;
background-color: lightsalmon;
}
.sidebar {
flex: 1;
background-color: lightblue;
}