mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
27 lines
343 B
SCSS
27 lines
343 B
SCSS
/**
|
|
* Copyright (c) 2020 Aleksej Komarov
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
.Notifications {
|
|
position: absolute;
|
|
top: 1em;
|
|
left: 1em;
|
|
right: 2em;
|
|
}
|
|
|
|
.Notification {
|
|
color: #fff;
|
|
background-color: crimson;
|
|
padding: 0.5em;
|
|
margin: 1em 0;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|