srikat

Untitled

May 15th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. .home-top .widget-wrap {
  2. display: grid;
  3. grid-template-columns: repeat(4, 1fr);
  4. grid-gap: 30px;
  5. }
  6.  
  7. @media only screen and (max-width: 860px) {
  8.  
  9. .home-top .widget-wrap {
  10. grid-template-columns: repeat(2, 1fr);
  11. }
  12.  
  13. }
  14.  
  15. @media only screen and (max-width: 480px) {
  16.  
  17. .home-top .widget-wrap {
  18. grid-template-columns: 1fr;
  19. }
  20.  
  21. }
Add Comment
Please, Sign In to add comment