Advertisement
Guest User

Untitled

a guest
May 29th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.12)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. @mixin some-mixin($margin: 10px, $border: null) {
  7. width: 100%;
  8. margin: $margin;
  9. border: $border;
  10. }
  11.  
  12. .default {
  13. @include some-mixin;
  14. }
  15.  
  16. .with-border {
  17. @include some-mixin($border: solid 1px #000);
  18. }
  19.  
  20. .without-margin {
  21. @include some-mixin($margin: null);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement