93574ce085
* Template and styles * @type to @color on flash messages * Notifications service as wrapper * Test cases updated for new notifs
15 lines
215 B
SCSS
15 lines
215 B
SCSS
section.notifications {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
z-index: 100;
|
|
justify-items: right;
|
|
display: grid;
|
|
|
|
.flash-message {
|
|
&:not(:last-child) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|