15 lines
218 B
SCSS
15 lines
218 B
SCSS
@use "./colors";
|
|
@use "./mixins";
|
|
|
|
.floating-notifications-container {
|
|
padding: {
|
|
right: 6px;
|
|
top: 6px;
|
|
};
|
|
|
|
& > .notification {
|
|
margin: 6px;
|
|
box-shadow: 0 0 4px .5px colors.$bg-translucent;
|
|
}
|
|
}
|