mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
36 lines
534 B
SCSS
36 lines
534 B
SCSS
@import "_mixin", "color";
|
|
|
|
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-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: 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;
|
|
}
|