Last active
December 12, 2015 07:48
-
-
Save wibron/4738767 to your computer and use it in GitHub Desktop.
Compass spriting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass"; | |
@import "icons/*.png"; | |
// Specifika ikoner från din sprite | |
// Höjd/bredd kalkyleras ut automagiskt | |
.login { | |
@include icon-sprite(login); | |
} | |
.home { | |
@include icon-sprite(home); | |
} | |
// Eller följande för att få alla (de får class-namnet av filnamnet) | |
@include all-icons-sprites; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment