scale nav buttons on narrow screens
This commit is contained in:
parent
cf9a99a6ca
commit
28bb8f2e2a
3 changed files with 24 additions and 2 deletions
|
|
@ -189,11 +189,33 @@ body {
|
|||
#divTwcBottom>div {
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
|
||||
// scale down the buttons on narrower screens
|
||||
@media (max-width: 550px) {
|
||||
zoom: 0.90;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
zoom: 0.80;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
zoom: 0.70;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
zoom: 0.60;
|
||||
}
|
||||
|
||||
@media (max-width: 350px) {
|
||||
zoom: 0.50;
|
||||
}
|
||||
}
|
||||
|
||||
#divTwcBottomLeft {
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
|
||||
}
|
||||
|
||||
#divTwcBottomMiddle {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue