25 lines
476 B
SCSS
25 lines
476 B
SCSS
div.status_advanced {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
justify-content: flex-start;
|
|
align-items: auto;
|
|
|
|
|
|
|
|
}
|
|
|
|
div.status_advanced_box {
|
|
display: flex;
|
|
border: 1px solid $soft_blue;
|
|
background-color: $soft_blue_very_lighten;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 10px;
|
|
padding: 20px;
|
|
font-size: 16px;
|
|
flex: 0 1 21%;
|
|
white-space: nowrap;
|
|
}
|