summaryrefslogtreecommitdiff
path: root/_sass/animate/_fade-in.scss
blob: 03fdea8a8ccd1f16557239288155e953617bb12d (plain)
1
2
3
4
5
6
7
8
@include keyframes(fade-in) {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}