16 lines
221 B
SCSS
16 lines
221 B
SCSS
.base {
|
|
position: fixed;
|
|
z-index: 4000;
|
|
top: 15px;
|
|
left: 50%;
|
|
width: calc(100% - 30px);
|
|
max-width: 800px;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.notification {
|
|
&:not(:last-child) {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|