spee.ch/client/scss/components/_page-content.scss

11 lines
229 B
SCSS
Raw Normal View History

.page-content {
margin: 2em;
background-color: blue;
// fill the parent flex container
flex: 1 0 auto;
// be a flex container for children
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
};