style.scss
68 lines
| 1 | $xs-max: 575.98px; |
| 2 | $sm-max: 767.98px; |
| 3 | $md-max: 991.98px; |
| 4 | $lg-max: 1199.98px; |
| 5 | $xl-max: 1399.98px; |
| 6 | |
| 7 | |
| 8 | |
| 9 | $sm-min: 576px; |
| 10 | $md-min: 768px; |
| 11 | $lg-min: 992px; |
| 12 | $xl-min: 1200px; |
| 13 | $xxl-min: 1400px; |
| 14 | |
| 15 | .vk_hidden { |
| 16 | display: none !important; |
| 17 | color: var(--blue); |
| 18 | |
| 19 | @media (max-width: $xs-max) { |
| 20 | |
| 21 | &-xs { |
| 22 | display: none !important; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | @media (min-width: $sm-min) and (max-width: $sm-max) { |
| 27 | |
| 28 | &-sm { |
| 29 | display: none !important; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | @media (min-width: $md-min) and (max-width: $md-max) { |
| 34 | |
| 35 | &-md { |
| 36 | display: none !important; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | @media (min-width: $lg-min) and (max-width: $lg-max) { |
| 41 | |
| 42 | &-lg { |
| 43 | display: none !important; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | @media (min-width: $xl-min) { |
| 48 | |
| 49 | &-xl { |
| 50 | display: none !important; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | @media (min-width: $xl-min) and (max-width: $xl-max) { |
| 55 | |
| 56 | &-xl-v2 { |
| 57 | display: none !important; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | @media (min-width: $xxl-min) { |
| 62 | |
| 63 | &-xxl { |
| 64 | display: none !important; |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 |