From 635d2d26072c933d26679779d667faf2a85bb196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laussel=20LO=C3=AFc?= Date: Tue, 14 Feb 2017 14:39:20 +0100 Subject: [PATCH] fix(font): update font declaration order --- scss/orangeHelvetica.scss | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/scss/orangeHelvetica.scss b/scss/orangeHelvetica.scss index f08e0a595b..02ed7f3cf0 100644 --- a/scss/orangeHelvetica.scss +++ b/scss/orangeHelvetica.scss @@ -19,22 +19,22 @@ @font-face { font-family: "HelvNeueOrange"; font-style: normal; - font-weight: 700; - src:url('#{$icon-font-path}HelvNeue75_W1G.eot'); - src:url('#{$icon-font-path}HelvNeue75_W1G.eot?#iefix') format('embedded-opentype'), - url('#{$icon-font-path}HelvNeue75_W1G.woff2') format('woff2'), - url('#{$icon-font-path}HelvNeue75_W1G.woff') format('woff'), - url('#{$icon-font-path}HelvNeue75_W1G.ttf') format('truetype'), - url('#{$icon-font-path}HelvNeue75_W1G.svg') format('svg'); + font-weight: 400; + src: url("#{$icon-font-path}HelvNeue55_W1G.eot"); + src: url("#{$icon-font-path}HelvNeue55_W1G.eot?#iefix") format("embedded-opentype"), + url("#{$icon-font-path}HelvNeue55_W1G.woff2") format("woff2"), + url("#{$icon-font-path}HelvNeue55_W1G.woff") format("woff"), + url("#{$icon-font-path}HelvNeue55_W1G.ttf") format("truetype"), + url("#{$icon-font-path}HelvNeue55_W1G.svg") format("svg"); } @font-face { font-family: "HelvNeueOrange"; font-style: normal; - font-weight: 400; - src:url('#{$icon-font-path}HelvNeue55_W1G.eot'); - src:url('#{$icon-font-path}HelvNeue55_W1G.eot?#iefix') format('embedded-opentype'), - url('#{$icon-font-path}HelvNeue55_W1G.woff2') format('woff2'), - url('#{$icon-font-path}HelvNeue55_W1G.woff') format('woff'), - url('#{$icon-font-path}HelvNeue55_W1G.ttf') format('truetype'), - url('#{$icon-font-path}HelvNeue55_W1G.svg') format('svg'); + font-weight: 700; + src: url("#{$icon-font-path}HelvNeue75_W1G.eot"); + src: url("#{$icon-font-path}HelvNeue75_W1G.eot?#iefix") format("embedded-opentype"), + url("#{$icon-font-path}HelvNeue75_W1G.woff2") format("woff2"), + url("#{$icon-font-path}HelvNeue75_W1G.woff") format("woff"), + url("#{$icon-font-path}HelvNeue75_W1G.ttf") format("truetype"), + url("#{$icon-font-path}HelvNeue75_W1G.svg") format("svg"); }