1
0
Fork 0
mirror of synced 2024-09-30 09:18:14 +13:00
appwrite/public/styles/responsive.less

24 lines
284 B
Text
Raw Normal View History

2020-02-27 10:54:12 +13:00
.phones-only {
display: none;
@media @phones {
display: inherit!important;
}
}
.tablets-only {
display: none;
@media @tablets {
display: inherit!important;
}
}
.desktops-only {
display: none;
@media @desktops, @tvs {
display: inherit!important;
}
}