mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
Hide minimum and economy on mobile
This commit is contained in:
parent
7f8834a2eb
commit
ec24549602
@ -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;
|
||||
}
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
@ -64,7 +64,7 @@
|
||||
}
|
||||
|
||||
.more-padding {
|
||||
padding: 18px;
|
||||
padding: 23px 20px !important;
|
||||
}
|
||||
|
||||
.card-wrapper {
|
||||
|
Loading…
Reference in New Issue
Block a user