Skip to content

Commit

Permalink
Merge pull request #71 from davidgeary/master
Browse files Browse the repository at this point in the history
Variables not being compiled into @fontface URLs within SASS stylesheet
  • Loading branch information
aristath committed Mar 4, 2014
2 parents a4ececc + 0be9f21 commit 1902664
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sass/elusive-webfont.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ $elusiveWebfontPath: '../fonts/';
$Elusive-iconfontVersion: 2;
@font-face {
font-family: 'Elusive-Icons';
src:url('#{elusiveWebfontPath}Elusive-Icons.eot?v=#{Elusive-iconfontVersion}');
src:url('#{elusiveWebfontPath}Elusive-Icons.eot?#iefix&v=#{Elusive-iconfontVersion}') format('embedded-opentype'),
url('#{elusiveWebfontPath}Elusive-Icons.svg#Elusive-Icons?v=#{Elusive-iconfontVersion}') format('svg'),
url('#{elusiveWebfontPath}Elusive-Icons.woff?v=#{Elusive-iconfontVersion}') format('woff'),
url('#{elusiveWebfontPath}Elusive-Icons.ttf?v=#{Elusive-iconfontVersion}') format('truetype');
src:url('#{$elusiveWebfontPath}Elusive-Icons.eot?v=#{$Elusive-iconfontVersion}');
src:url('#{$elusiveWebfontPath}Elusive-Icons.eot?#iefix&v=#{$Elusive-iconfontVersion}') format('embedded-opentype'),
url('#{$elusiveWebfontPath}Elusive-Icons.svg#Elusive-Icons?v=#{$Elusive-iconfontVersion}') format('svg'),
url('#{$elusiveWebfontPath}Elusive-Icons.woff?v=#{$Elusive-iconfontVersion}') format('woff'),
url('#{$elusiveWebfontPath}Elusive-Icons.ttf?v=#{$Elusive-iconfontVersion}') format('truetype');
font-weight: normal;
font-style: normal;
}
Expand Down

0 comments on commit 1902664

Please sign in to comment.