bulma/sass/elements/notification.sass
2016-10-30 10:41:53 +00:00

24 lines
457 B
Sass

.notification
+block
+clearfix
background-color: $background
border-radius: $radius
padding: 1.25rem 1.5rem
position: relative
.delete
border-radius: 0 $radius
position: absolute
right: 0
top: 0
.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