mirror of
https://github.com/appwrite/appwrite
synced 2026-05-21 16:08:22 +00:00
24 lines
No EOL
284 B
Text
24 lines
No EOL
284 B
Text
|
|
.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;
|
|
}
|
|
} |