aboutsummaryrefslogtreecommitdiff
path: root/_scss/_animate.scss
blob: 5a595d70bb0f2684dde8b4afd91fda45f2f94199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@import 'utilities/keyframes';

@include keyframes(fadeIn) {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@include keyframes(fadeOut) {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}