2
0
mirror of https://github.com/erikflowers/weather-icons.git synced 2025-10-13 07:52:12 -06:00

putting wind-default above variable request. Sass can't lazy load variables apparently.

This commit is contained in:
Erik Flowers 2015-08-03 10:14:56 -07:00
parent 3bc83aedb9
commit b394991018
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,7 @@
// Wind Variables 2.0 // Wind Variables 2.0
@wind-default: "\f0b1";
.@{wi-css-prefix}-wind-default:before { content: @wind-default; } .@{wi-css-prefix}-wind-default:before { content: @wind-default; }
.wind-rotate(@degrees) { .wind-rotate(@degrees) {
-webkit-transform: rotate(@degrees); -webkit-transform: rotate(@degrees);
@ -9,8 +11,4 @@
transform: rotate(@degrees); transform: rotate(@degrees);
} }
@wind-default: "\f0b1"; @import "classes-wind-degrees.less";
@import "classes-wind-degrees.less";

View File

@ -1,5 +1,7 @@
// Wind Variables 2.0 // Wind Variables 2.0
$wind-default: "\f0b1";
.#{$wi-css-prefix}-wind-default:before { content: $wind-default; } .#{$wi-css-prefix}-wind-default:before { content: $wind-default; }
@mixin wind-rotate( $val: 0deg ) { @mixin wind-rotate( $val: 0deg ) {