fixed sass interpolation

sass should use #{} interpolation syntax
This commit is contained in:
7c00 2014-11-12 11:05:24 +08:00
parent 531487f299
commit 5e64f14e9f

View File

@ -1,10 +1,10 @@
@font-face {
font-family: "Material-Design-Icons";
src:url("$material-font-path/Material-Design-Icons.eot?-g7cqhn");
src:url("$material-font-path/Material-Design-Icons.eot?#iefix-g7cqhn") format("embedded-opentype"),
url("$material-font-path/Material-Design-Icons.woff?-g7cqhn") format("woff"),
url("$material-font-path/Material-Design-Icons.ttf?-g7cqhn") format("truetype"),
url("$material-font-path/Material-Design-Icons.svg?-g7cqhn#Material-Design-Icons") format("svg");
src:url("#{$material-font-path}/Material-Design-Icons.eot?-g7cqhn");
src:url("#{$material-font-path}/Material-Design-Icons.eot?#iefix-g7cqhn") format("embedded-opentype"),
url("#{$material-font-path}/Material-Design-Icons.woff?-g7cqhn") format("woff"),
url("#{$material-font-path}/Material-Design-Icons.ttf?-g7cqhn") format("truetype"),
url("#{$material-font-path}/Material-Design-Icons.svg?-g7cqhn#Material-Design-Icons") format("svg");
font-weight: normal;
font-style: normal;
}