bfile/filed/static/assets/mobile-hide.css

11 lines
162 B
CSS
Raw Normal View History

.mobile-only {
display: none;
}
2023-10-10 13:56:28 +02:00
@media (max-width:667px) {
.mobile-hide {
display: none
}
.mobile-only {
display: inherit;
}
2023-10-10 13:56:28 +02:00
}