Guest User

Untitled

a guest
Jun 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. @mixin tiny-screen () {
  2. @media only screen and (max-width: 320px) {
  3. @content;
  4. }
  5. }
  6.  
  7. @include tiny-screen {
  8. color: red;
  9. }
Add Comment
Please, Sign In to add comment