aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/common/mixins.scss
blob: 79d26d6c165f3a7cf42c33e8ec9fa015f4e2c7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@mixin keyframes ($name) {
	@-webkit-keyframes #{$name} {
    @content;
  }
  @-moz-keyframes #{$name} {
    @content;
  }
  @keyframes #{$name} {
    @content;
  }
}

@mixin animation ($anim) {
	-webkit-animation: $anim;
	-moz-animation: $anim;
	animation: $anim;
}