18 lines
283 B
SCSS
18 lines
283 B
SCSS
.alerts {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.alerts>div {
|
|
width: 3vw;
|
|
height: 1.5vw;
|
|
border: 1px solid grey;
|
|
border-radius: 5px;
|
|
margin: 0 0.5vw;
|
|
justify-content: center;
|
|
}
|
|
|
|
.alerts>div:nth-child(1) {
|
|
margin-left: 0 !important;
|
|
} |