clean(): removed trailing whitespce

This commit is contained in:
Torkel Ödegaard 2016-02-21 00:08:35 +01:00
parent aaf6dd2cd6
commit 808ac2cefc

View File

@ -4,13 +4,13 @@
} }
@-moz-keyframes #{$animation-name} { @-moz-keyframes #{$animation-name} {
@content; @content;
} }
@-ms-keyframes #{$animation-name} { @-ms-keyframes #{$animation-name} {
@content; @content;
} }
@-o-keyframes #{$animation-name} { @-o-keyframes #{$animation-name} {
@content; @content;
} }
@keyframes #{$animation-name} { @keyframes #{$animation-name} {
@content; @content;
} }
@ -21,5 +21,5 @@
-moz-animation: #{$str}; -moz-animation: #{$str};
-ms-animation: #{$str}; -ms-animation: #{$str};
-o-animation: #{$str}; -o-animation: #{$str};
animation: #{$str}; animation: #{$str};
} }