Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Last active October 11, 2018 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GarySwift/b8fabea6859bda0c3b474cc09d5caf85 to your computer and use it in GitHub Desktop.
Save GarySwift/b8fabea6859bda0c3b474cc09d5caf85 to your computer and use it in GitHub Desktop.

Icomoon Font Packs

These notes are a quick reminder to myself about how to install and how to update an Icomoon font pack.

https://icomoon.io/app/#/select

How to include in a FoundationPress project

Steps:
  1. Download and extract zip form Icomoon.

  2. Copy the icomoon directory into the FoundationPress assets directory. (src/assets/). You can replace an existing directory if you are updating.

  3. Open terminal and navigate to the FoundationPress directory.

  4. Create a sass file in the assets directory. (-f will force overwrite)

cp -f src/assets/icomoon/style.css src/assets/scss/_icomoon.scss
  1. Update location using search and replace
sed -i 's#fonts\/icomoon#..\/icomoon\/fonts\/icomoon#g' src/assets/scss/_icomoon.scss
  1. Be sure to include this file in src/assets/scss/app.scss.
@import "icomoon";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment