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

This commit is contained in:
sshakndr
2025-02-18 14:09:00 +07:00
committed by Sergey Linnik
parent 8c136540be
commit da071258f6
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 {
width: 100%;
}

View File

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