Slide 64
Slide 64 text
/components/_alerts.sass
@each
$alert
in
$alerts
$kind:
nth($alert,
1)
$color:
nth($alert,
2)
$icon:
nth($alert,
3)
.alert-‐#{$kind}
background:
$color
url("#{$icon}.svg")
/variables/_alerts.scss
$green:
#45ad60;
$gold:
#f3ae4e;
$red:
#cb4e52;
$alerts:
(
(success,
$green,
tick)
(warning,
$gold,
info)
(danger,
$red,
alarm)
);