Skip to content

Commit

Permalink
Merge pull request #96 from Va1/patch-1
Browse files Browse the repository at this point in the history
Adding ability to override variables in SASS version
  • Loading branch information
erikflowers committed Aug 19, 2015
2 parents f7f6810 + 26e1ade commit 9ab993d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sass/weather-icons-core.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Base Variables
$wi-path: "../font";
$wi-version: "2.0";
$wi-css-prefix: wi;
$wi-font-family: weathericons;
$wi-path: "../font" !default;
$wi-version: "2.0" !default;
$wi-css-prefix: wi !default;
$wi-font-family: weathericons !default;

@font-face {
font-family: '#{$wi-font-family}';
Expand Down Expand Up @@ -50,4 +50,4 @@ $wi-font-family: weathericons;
.#{$wi-css-prefix}-rotate-270 { @include wi-icon-rotate(270deg, 3); }

.#{$wi-css-prefix}-flip-horizontal { @include wi-icon-flip(-1, 1, 0); }
.#{$wi-css-prefix}-flip-vertical { @include wi-icon-flip(1, -1, 2); }
.#{$wi-css-prefix}-flip-vertical { @include wi-icon-flip(1, -1, 2); }

0 comments on commit 9ab993d

Please sign in to comment.