mempool/frontend/src/app/components/fees-box/fees-box.component.scss

128 lines
2.2 KiB
SCSS
Raw Normal View History

2020-09-26 23:40:26 +07:00
.card-title {
color: #4a68b9;
font-size: 10px;
2022-05-31 22:31:01 +02:00
margin-bottom: 4px;
font-size: 1rem;
2020-07-29 17:30:30 +07:00
}
.card-text {
font-size: 22px;
span {
font-size: 11px;
position: relative;
top: -2px;
display: inline-flex;
}
.green-color {
display: block;
}
}
.fee-estimation-container {
display: flex;
justify-content: space-between;
2022-06-01 12:28:36 +02:00
flex-direction: row;
.item {
2022-05-31 22:31:01 +02:00
width: 100px;
margin: 0;
width: -webkit-fill-available;
2022-06-01 12:28:36 +02:00
&:first-child {
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
2022-06-01 12:28:36 +02:00
margin: 0 auto 0px;
&:last-child {
margin-bottom: 0;
}
.card-text span {
2024-04-04 15:36:24 +09:00
color: var(--transparent-fg);
font-size: 12px;
top: 0px;
}
.fee-text{
border-bottom: 1px solid #ffffff1c;
width: fit-content;
margin: auto;
2022-06-01 09:46:52 +02:00
font-size: 20px;
}
.fiat {
display: block;
2022-06-01 09:46:52 +02:00
font-size: 13px !important;
}
}
}
.loading-container{
2022-06-01 09:46:52 +02:00
height: 50px;
}
.card-text {
.skeleton-loader {
width: 100%;
display: block;
&:first-child {
2022-06-01 09:46:52 +02:00
max-width: 70px;
margin: 10px auto 3px;
}
&:last-child {
margin: 10px auto 3px;
max-width: 55px;
}
}
2022-05-31 22:31:01 +02:00
}
.fee-progress-bar {
2022-06-02 17:44:44 +02:00
width: 25%;
2022-06-01 09:46:52 +02:00
height: 22px;
2022-06-01 12:28:36 +02:00
margin-bottom: 12px;
2022-05-31 22:31:01 +02:00
display: flex;
flex-direction: row;
2022-06-01 09:46:52 +02:00
transition: background-color 1s;
2022-06-02 17:44:44 +02:00
&.priority {
2022-06-01 12:28:36 +02:00
@media (767px < width < 992px), (width < 576px) {
2022-06-02 17:44:44 +02:00
width: 100%;
2022-06-01 12:28:36 +02:00
}
2022-06-02 17:44:44 +02:00
width: 75%;
border-radius: 0px 10px 10px 0px;
2022-06-01 12:28:36 +02:00
}
2022-06-02 17:44:44 +02:00
&:first-child {
2022-06-01 12:28:36 +02:00
@media (767px < width < 992px), (width < 576px) {
display: none
}
}
2022-06-02 17:44:44 +02:00
}
.band-separator {
width: 5%;
@media (767px < width < 992px), (width < 576px) {
display: none
}
&.fill {
height: 22px;
background: repeating-linear-gradient(
90deg,
rgb(45, 51, 72),
rgb(45, 51, 72) 2px,
rgb(29, 31, 49) 2px,
rgb(29, 31, 49) 4px
);
}
}
.fee-label {
padding-top: 2px;
font-size: 12px;
width: 100%;
@media (767px < width < 992px), (width < 576px) {
width: 33%;
}
&.prority {
width: 33%;
}
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-left: 5px;
padding-right: 5px;
}