sanic/guide/style/bulma-prefers-dark/sass/elements/notification.sass
2023-09-06 15:44:00 +03:00

22 lines
552 B
Sass

$notification-background-color-dark: $background-dark !default
.notification
background-color: $notification-background-color-dark
code,
pre
background: $black
// Colors
@each $name, $pair in $colors
$color: darken(nth($pair, 1), 10%)
$color-invert: nth($pair, 2)
&.is-#{$name}
background-color: $color
color: $color-invert
// Colors Dark
@each $name, $pair in $colors
$color: nth($pair, 1)
$color-invert: nth($pair, 2)
&.is-#{$name}-dark
background-color: $color
color: $color-invert