Advertisement
fauzanjeg

Unset configuration boxed and box-shadow in mobile device

May 10th, 2021
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. /* Unset configuration boxed and box-shadow in mobile device */
  2. @media only screen and (max-width: 1024px) {
  3.     .jeg_pb_boxed {
  4.         padding: unset !important;
  5.     }
  6.  
  7.     .jnews-dark-mode .jeg_pb_boxed {
  8.         background: unset !important;
  9.     }
  10.  
  11.     .jeg_pb_boxed_shadow {
  12.         border: unset !important;
  13.         box-shadow: unset !important;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement