You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
449 B

  1. .notification
  2. @extend .block
  3. +clearfix
  4. background-color: $background
  5. border-radius: $radius
  6. padding: 16px 20px
  7. position: relative
  8. .delete
  9. border-radius: 0 $radius
  10. float: right
  11. margin: -16px -20px 0 20px
  12. .subtitle,
  13. .title
  14. color: inherit
  15. // Colors
  16. @each $name, $pair in $colors
  17. $color: nth($pair, 1)
  18. $color-invert: nth($pair, 2)
  19. &.is-#{$name}
  20. background-color: $color
  21. color: $color-invert