We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3de3b5 commit cc2b100Copy full SHA for cc2b100
src/styles/_mixins.scss
@@ -200,22 +200,22 @@
200
201
@mixin animate($type: 'fade-in', $time: 1s, $delay: 0s) {
202
@if $type == 'fade-in' {
203
- @extend .animate--fade-in;
+ @extend %animate--fade-in;
204
animation-duration: $time;
205
animation-delay: $delay;
206
}
207
@if $type == 'fade-out' {
208
- @extend .animate--fade-out;
+ @extend %animate--fade-out;
209
210
211
212
@if $type == 'fsb' {
213
- @extend .animate--fade-and-slide-in-from-bottom;
+ @extend %animate--fade-and-slide-in-from-bottom;
214
215
216
217
@if $type == 'fsbr' {
218
- @extend .animate--fsbr;
+ @extend %animate--fsbr;
219
220
221
0 commit comments