Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @mixin xs() {
  2. @media only screen and (max-width: $screen-xs-max) {
  3. @content;
  4. }
  5. }
  6.  
  7. @mixin sm() {
  8. @media only screen and (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
  9. @content;
  10. }
  11. }
  12.  
  13. @mixin md() {
  14. @media only screen and (min-width: $screen-md-min) and (max-width: $screen-md-max) {
  15. @content;
  16. }
  17. }
  18.  
  19. @mixin lg() {
  20. @media only screen and (min-width: $screen-lg-min) {
  21. @content;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement