Guest User

Untitled

a guest
Jul 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. mixin container(svg)
  2. .logo-box
  3. if svg == first
  4. svg.class__first
  5. else if svg === second
  6. svg.class__second
  7. else if svg === third
  8. svg.class__third
  9. else
  10. svg.class__fourth
  11. +container(first)
  12. +container(second)
  13. +container(third)
Add Comment
Please, Sign In to add comment