Skip to content

Commit

Permalink
fix: fix animation mixin inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
jeripeierSBB committed Apr 17, 2024
1 parent a815fac commit 15a8786
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/core/styles/typography.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@use './core/font-face';
@use './mixins/a11y';
@use './mixins/animation';
@use './mixins/layout';
@use './mixins/lists';
@use './mixins/scrollbar';
Expand Down Expand Up @@ -153,17 +154,17 @@ input[data-sbb-time-input] {
}

.sbb-disable-animation {
@include a11y.disable-animation;
@include animation.disable-animation;
}

.sbb-disable-animation-locally {
@include a11y.disable-animation;
@include animation.disable-animation;

& > * {
@include a11y.enable-animation;
@include animation.enable-animation;
}
}

.sbb-enable-animation {
@include a11y.enable-animation;
@include animation.enable-animation;
}

0 comments on commit 15a8786

Please sign in to comment.