AdamBrodzinski / Retina-Sprites-for-Compass

A mixin for creating retina sprites with hover & active states
MIT License
233 stars 35 forks source link

Positioning #14

Closed jsmmth closed 11 years ago

jsmmth commented 11 years ago

Hey man great mixin, just throw me a little tip... I have this...

@include retina-sprite(search);

how would I position it from the top like lets say 10px?

ValentinCreative commented 11 years ago

Like this ?

    .icon-search {
        position: relative; 
        top: 10px; 
        @include retina-sprite(search);
    }