Mixins
Icons
The icon
mixin will let you call all the needed properties to use ACL's icon font. Thus, an icon needs a class name (e.g: -lock
, -line-chart
) in order to call this mixin.
You can also pass an optional font-weight
parameter (bold
or bolder
) into this mixin to make the icon thicker.
@include icon(bold);
Info-box
The info-box
mixin is used to generate Wells and Toasts because of their similar styles.
This mixin takes 3 parameters $background-color
, $border-color
and $text-color
.
@include info-box($background-color, $border-color, $text-color);