Guest User

Untitled

a guest
Oct 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // original
  2.  
  3. @import "mgmt/sprites/icons/*.png";
  4. $icons: sprite-map("mgmt/sprites/icons/*.png");
  5.  
  6. .test {
  7. background: transparent $icons no-repeat 0 0;
  8. }
  9.  
  10. // my test
  11. $cc: sprite-map("sprites/icons/credit-cards/*.png")
  12.  
  13. [class^=credit-cards]
  14. background: $cc
  15.  
  16. // my output
  17. [class^=credit-cards] {
  18. background: url('/assets/img/sprites/icons/credit-cards-sd348035735.png');
Add Comment
Please, Sign In to add comment