Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.70 KB | None | 0 0
  1.  
  2. @media only screen and (min-width : 320px) {
  3.     .tab-content .row {
  4.         display: flex;
  5.         flex-wrap: wrap;
  6.     }
  7.     .tab-content [class*="col-lg"] {
  8.         width: calc(100% / 2);
  9.     }
  10. }
  11.    
  12. @media only screen and (min-width : 768px) {
  13.     .tab-content [class*="col-lg"] {
  14.         width: calc(100% / 4);
  15.     }
  16. }
  17.    
  18. @media only screen and (min-width : 1200px) {
  19.     .tab-content [class*="col-lg"] {
  20.         width: calc(100% / 6);
  21.     }
  22. }
  23. @media only screen and (min-width : 1920px) {
  24.     .tab-content [class*="col-lg"] {
  25.         width: calc(100% / 7);
  26.     }
  27. }
  28. @media only screen and (min-width : 1921px) {
  29.     .tab-content [class*="col-lg"] {
  30.         width: auto;
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement