Fix #691
This commit is contained in:
parent
b9546d8ea6
commit
3fb7cc90fc
12 changed files with 100 additions and 97 deletions
|
@ -9,6 +9,29 @@ Contains tweaks for small screens
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-height: 300px) and (min-width: 225px) {
|
||||
.very-small-screen {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
.hidden-on-very-small-screen {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media not screen and (min-height: 300px) and (min-width: 225px) {
|
||||
.very-small-screen {
|
||||
}
|
||||
|
||||
.hidden-on-very-small-screen {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px), only screen and (max-height: 768px) {
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue