cssOMS/main.scss

34 lines
512 B
SCSS

main {
height: 100%;
width: 100%;
position: relative;
top: 0;
bottom: 100%;
left: 0;
z-index: 1;
padding-right: 5px;
background: $background-color;
transition: all 0.2s;
}
.flex-container {
display: flex;
flex-directoion: row;
flex-wrap: wrap;
justify-content: flex-center;
align-items: flex-start;
align-content: flex-start;
}
.flex-item-static {
flex-grow: 0;
flex-shrink: 0;
}
.flex-item {
flex-grow: 1;
flex-basis: auto;
}