16 lines
262 B
SCSS
16 lines
262 B
SCSS
@media only screen and (max-width: 800px) {
|
|
.visible-lg {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.visible-lt-lg {
|
|
display: none !important;
|
|
}
|
|
|
|
@media only screen and (max-width: 800px) {
|
|
.visible-lt-lg {
|
|
display: flex !important;
|
|
}
|
|
}
|