bulma/sass/elements/notification.sass
2016-10-30 16:11:04 +00:00

22 lines
439 B
Sass

.notification
+block
background-color: $background
border-radius: $radius
padding: 1.25rem 2.5rem 1.25rem 1.5rem
position: relative
.delete
position: absolute
right: 0.5em
top: 0.5em
.title,
.subtitle,
.content
color: inherit
// Colors
@each $name, $pair in $colors
$color: nth($pair, 1)
$color-invert: nth($pair, 2)
&.is-#{$name}
background-color: $color
color: $color-invert