Last active
December 13, 2015 18:18
-
-
Save jgatjens/4954129 to your computer and use it in GitHub Desktop.
Compass - Custom sprite
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/utilities/sprites/base"; | |
$icons: sprite-map("images/icons/*.png", $layout: smart); | |
[class^="icon-"] { | |
display: inline-block; | |
background: $icons; | |
} | |
@each $i in sprite_names($icons) { | |
.icon-#{$i} { | |
background-position: sprite-position($icons, $i); | |
@include sprite-dimensions($icons, $i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment