EduardET

Untitled

Mar 2nd, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.17 KB | None | 0 0
  1. .show-on-mobile {
  2.     display: none;
  3. }
  4. @media (min-width: 1024px) {
  5.     .show-on-desktop {
  6.         display: none;
  7.     }
  8.     .show-on-mobile {
  9.         display: block.
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment