fix(ruby): support for mobile screens with width less than 320px

This commit is contained in:
sshakndr
2025-02-18 14:09:58 +07:00
committed by Sergey Linnik
parent da071258f6
commit 08fe615b93
2 changed files with 4 additions and 4 deletions

View File

@ -146,7 +146,7 @@ header a {
} }
} }
@media (max-width: 592px) and (min-width: 320px) { @media (max-width: 592px) {
.center, .table-main { .center, .table-main {
width: 100%; width: 100%;
} }

View File

@ -640,7 +640,7 @@
} }
} }
@media (max-width: 420px) and (min-width: 320px) { @media (max-width: 420px) {
.tableRow, .tableRow,
menu.links { menu.links {
width: 25%; width: 25%;
@ -716,7 +716,7 @@
max-width: 45%; max-width: 45%;
} }
} }
@media (max-width: 600px) and (min-width: 320px) { @media (max-width: 600px) {
.main-panel{ .main-panel{
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -743,7 +743,7 @@
} }
} }
@media (max-width: 592px) and (min-width: 320px) { @media (max-width: 592px) {
body.menu-open { body.menu-open {
overflow: hidden; overflow: hidden;
} }