Improve responsiveness on single column layout

This commit is contained in:
nymkappa 2023-02-25 13:20:49 +09:00
parent 92862939da
commit 80e0ef8970
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
2 changed files with 10 additions and 4 deletions

View File

@ -19,7 +19,7 @@ tr, td, th {
.pool { .pool {
width: 15%; width: 15%;
@media (max-width: 576px) { @media (max-width: 575px) {
width: 75%; width: 75%;
} }
overflow: hidden; overflow: hidden;
@ -36,14 +36,17 @@ tr, td, th {
.liquidity { .liquidity {
width: 10%; width: 10%;
@media (max-width: 576px) { @media (max-width: 575px) {
width: 25%; width: 25%;
} }
} }
.fiat { .fiat {
width: 15%; width: 15%;
@media (max-width: 991px) { @media (min-width: 768px) and (max-width: 991px) {
display: none !important;
}
@media (max-width: 575px) {
display: none !important; display: none !important;
} }
} }

View File

@ -45,7 +45,10 @@ tr, td, th {
} }
.geolocation { .geolocation {
@media (max-width: 991px) { @media (min-width: 768px) and (max-width: 991px) {
display: none !important;
}
@media (max-width: 575px) {
display: none !important; display: none !important;
} }
} }