Skip to content

Instantly share code, notes, and snippets.

@Rocketpilot
Created October 7, 2011 01:36
Show Gist options
  • Save Rocketpilot/1269229 to your computer and use it in GitHub Desktop.
Save Rocketpilot/1269229 to your computer and use it in GitHub Desktop.
Global offset of sprites
/* I'd hoped I could use something like this to globally offset the vertical position of sprites when I use them to badge the left-hand site of heading text. Right now, each sprite defaults to the very top of the containing box and doesn't line up neatly with lower case text:
* Heading
body text
etc.
*/
sprite-background-position($map, $sprite, $offset-x, $offset-y)
@Rocketpilot
Copy link
Author

Right, got it to work. For the record:

    @each $sprite in apply, bookings, buy, down, questions, report, reset_password, resources, statuses, up {
            h3.icons-#{$sprite} {@include icons-sprite-position($sprite, 0px, 2px); }
    } 

produced what I'm looking for.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment