
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
themify-icons
Advanced tools
This is a SCSS version of the Themify Icons which includes mixins to create themify icons on the fly. I am basing the SCSS off of the SCSS verion of font-awesome. You can find themify icons here: http://themify.me/themify-icons
##Install
Download and put the themify-icons folder inside of your SASS folder.
Include themify in your main sass file
@import 'themify-icons/themify-icons';
Use as you wish
This is currently in development, if you wish to help, please comment, fork, create issues, w/e you need.
There are a few available variables you may use, below are some usages.
This is the most basic usage. By default your icon will be displayed as a :before of your selected div. By default, your icon will be given a font size of 18px, a margin right or left of 10px and a color of inherit.
.mydiv { @include icon($apple); }
This will display the icon as a :after on your selected div
.mydiv { @include iconafter($apple); }
There are 3 variables currently set up for the icon: font-size, color, and margin. Below are their different uses:
.mydiv { @include icon($apple, 20px, 20px, $green); }
.mydiv { @include icon($apple, $fs:20px); }
.mydiv { @include icon($apple, $m:10px); }
.mydiv { @include icon($apple, $c:$purple); }
.mydiv { @include icon($apple, null, null, $blue)
$fs for font-size
$m for margin
$c for color
FAQs
Themify Icons SCSS
We found that themify-icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.