Hide minimum and economy on mobile

This commit is contained in:
nymkappa 2022-06-01 12:28:36 +02:00
parent 7f8834a2eb
commit ec24549602
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
3 changed files with 32 additions and 21 deletions

View File

@ -133,7 +133,7 @@
text-align: center;
flex-direction: column;
justify-content: space-around;
padding: 22px 20px;
padding: 24px 20px;
}
}
@ -148,3 +148,7 @@
margin-right: -2px;
font-size: 10px;
}
.symbol {
font-size: 13px;
}

View File

@ -21,28 +21,22 @@
.fee-estimation-container {
display: flex;
justify-content: space-between;
@media (min-width: 376px) {
flex-direction: row;
}
flex-direction: row;
.item {
width: 100px;
margin: 0;
width: -webkit-fill-available;
@media (min-width: 376px) {
margin: 0 auto 0px;
}
&:first-child{
display: none;
@media (min-width: 485px) {
display: block;
}
@media (min-width: 768px) {
display: none;
}
@media (min-width: 992px) {
display: block;
}
&:first-child {
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
&:nth-child(2) {
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
margin: 0 auto 0px;
&:last-child {
margin-bottom: 0;
}
@ -86,7 +80,7 @@
.fee-progress-bar {
width: 100%;
height: 22px;
margin-bottom: 8px;
margin-bottom: 12px;
border-radius: 0px 10px 10px 0px;
display: flex;
flex-direction: row;
@ -95,5 +89,18 @@
.fee-label {
font-size: 14px;
width: 100px;
width: 20%;
@media (767px < width < 992px), (width < 576px) {
width: 33%;
}
&:first-child {
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
&:nth-child(2) {
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
}

View File

@ -64,7 +64,7 @@
}
.more-padding {
padding: 18px;
padding: 23px 20px !important;
}
.card-wrapper {