v0.7.0
This release adds support for animations, thanks to @woodcox.
Animations are made available as mixins rather than variables.
@use 'open-props-scss' as op;
button {
@include op.scale-up;
}
Some animations (e.g. fade-in-bloom
and fade-out-bloom
) also have a dark theme version, which can be included by passing a dark
argument to the mixin.
section {
@include op.fade-in-bloom(dark);
}