mirror of
https://github.com/miggymofongo/asteroid.git
synced 2024-11-24 14:10:27 +00:00
18 lines
466 B
SCSS
18 lines
466 B
SCSS
|
// ================================================================================
|
||
|
// + Notifier
|
||
|
// --------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
div#bibi-notifier {
|
||
|
height: $Notifier_Height;
|
||
|
color: $Notifier_Color;
|
||
|
background: $Notifier_Background;
|
||
|
box-shadow: $Notifier_BoxShadow;
|
||
|
p {
|
||
|
font-family: $Notifier_FontFamily;
|
||
|
&.error {
|
||
|
font-family: $Notifier_FontFamily__Error;
|
||
|
color: $Notifier_Color__Error;
|
||
|
}
|
||
|
}
|
||
|
}
|