Skip to content

v0.7.0

Compare
Choose a tag to compare
@mayank99 mayank99 released this 18 Nov 03:02
· 3 commits to main since this release
48c292b

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);
}