Guest User

Untitled

a guest
Feb 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. @mixin hide-for-print {
  2.  
  3. @media print {
  4. display: none;
  5. }
  6. }
  7.  
  8. @mixin show-for-print {
  9.  
  10. @media print {
  11. display: block !important;
  12. }
  13. }
Add Comment
Please, Sign In to add comment