Advertisement
fauzanjeg

Make the avatar appear on mobile

Mar 1st, 2021
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.20 KB | None | 0 0
  1. /* Make the avatar appear on mobile */
  2. @media only screen and (max-width: 480px) {
  3.     .commentlist .avatar {
  4.         display: block;
  5.     }
  6.  
  7.     .comment-body {
  8.         padding-left: 55px;
  9.     }
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement