Created by: Psixodelik
Added a new field for utilities. Hover field. If it is set to true, then a class of the form .hover-utility-name is generated.
Classes after compilation:
.hover-border: hover {
border: 1px solid # dee2e6! important;
}
.hover-rounded-sm: hover {
border-radius: 0.2rem! important;
}
SASS examples:
"shadow": (
property: box-shadow,
hover: true,
class: shadow,
values: (
null: $box-shadow,
sm: $box-shadow-sm,
lg: $box-shadow-lg,
none: none,
),
),