Skip to content

Commit

Permalink
bugfix: change url to font-url
Browse files Browse the repository at this point in the history
  • Loading branch information
shoken0x committed Dec 26, 2016
1 parent 2d3ab33 commit 23b039f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ See [GitHub Releases](https://github.com/feathericon/feathericon-sass/releases)

| Version | feathericon | Notes / Other additions |
|---------|-------------|--------------------------------------------------------------------|
| 0.4.0.1 | `e1a58cc` | bugfix: change url to font-url |
| 0.4.0 | `e1a58cc` | [0.4.0](https://github.com/feathericon/feathericon/releases/tag/0.4.0) release (new icons) |
| 0.1.0 | `465e78e` | Simplest packaging as a gem as possible |

10 changes: 5 additions & 5 deletions app/assets/stylesheets/feathericon.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
*/
@font-face {
font-family: 'feathericon';
src: url('feathericon.eot');
src: url('feathericon.eot?#iefix') format('embedded-opentype'),
url('feathericon.woff') format('woff'),
url('feathericon.ttf') format('truetype'),
url('feathericon.svg') format('svg');
src: font-url('feathericon.eot');
src: font-url('feathericon.eot?#iefix') format('embedded-opentype'),
font-url('feathericon.woff') format('woff'),
font-url('feathericon.ttf') format('truetype'),
font-url('feathericon.svg') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/feathericon/sass/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Feathericon
module Sass
VERSION = '0.4.0'
VERSION = '0.4.0.1'
end
end

0 comments on commit 23b039f

Please sign in to comment.