Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Early Definition Override #18

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add default flag to variables to simplify override. Add icon font pat…
…h variable.
bryanculver committed May 16, 2018
commit 99946850c72db9855182927a7185c35e0c368d62
13 changes: 8 additions & 5 deletions src/core/font.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
/**
* IconFont
*/

$icon-font-path: '.' !default;

@font-face {
font-family: 'feather';
src: url('./fonts/feather.eot?t=1501829003743');
src: url('./fonts/feather.eot?t=1501829003743#iefix') format('embedded-opentype'),
url('./fonts/feather.ttf?t=1501829003743') format('truetype'),
url('./fonts/feather.woff?t=1501829003743') format('woff'),
url('./fonts/feather.svg?t=1501829003743#feather') format('svg');
src: url($icon-font-path + '/fonts/feather.eot?t=1501829003743');
src: url($icon-font-path + '/fonts/feather.eot?t=1501829003743#iefix') format('embedded-opentype'),
url($icon-font-path + '/fonts/feather.ttf?t=1501829003743') format('truetype'),
url($icon-font-path + '/fonts/feather.woff?t=1501829003743') format('woff'),
url($icon-font-path + '/fonts/feather.svg?t=1501829003743#feather') format('svg');
font-weight: normal;
font-size: normal;
}
Loading