161 lines
2.5 KiB
SCSS
161 lines
2.5 KiB
SCSS
.fee-card {
|
|
padding: 15px;
|
|
background-color: #1d1f31;
|
|
|
|
.feerate {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.rate {
|
|
font-size: 0.9em;
|
|
.symbol {
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-border {
|
|
border: solid 1px black;
|
|
background-color: #0c4a87;
|
|
}
|
|
|
|
.feerate.active {
|
|
background-color: #105fb0 !important;
|
|
opacity: 1;
|
|
border: 1px solid #007fff !important;
|
|
}
|
|
.feerate:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.estimateDisabled {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.table-toggle {
|
|
width: 100%;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.tab {
|
|
&:first-child {
|
|
margin-right: 1px;
|
|
}
|
|
border: solid 1px black;
|
|
border-bottom: none;
|
|
background-color: #323655;
|
|
border-top-left-radius: 10px !important;
|
|
border-top-right-radius: 10px !important;
|
|
}
|
|
.tab.active {
|
|
background-color: #5d659d !important;
|
|
opacity: 1;
|
|
}
|
|
.tab:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.table-accelerator {
|
|
tr {
|
|
td {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
&.group-first {
|
|
td {
|
|
padding-top: 0.75rem;
|
|
}
|
|
}
|
|
&.group-last {
|
|
td {
|
|
padding-bottom: 0.75rem;
|
|
}
|
|
}
|
|
}
|
|
td {
|
|
&:first-child {
|
|
width: 100vw;
|
|
}
|
|
&.info {
|
|
color: #6c757d;
|
|
white-space: initial;
|
|
}
|
|
&.amt {
|
|
text-align: right;
|
|
padding-right: 0.2em;
|
|
}
|
|
&.units {
|
|
padding-left: 0.2em;
|
|
white-space: nowrap;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.accelerate-cols {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.item {
|
|
white-space: initial;
|
|
}
|
|
|
|
.cashapp-cta {
|
|
width: 100%;
|
|
height: 54px;
|
|
background: #653b9c;
|
|
position: relative;
|
|
bottom: initial;
|
|
top: initial;
|
|
border-radius: 3px;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
padding: 4px 6px;
|
|
cursor: pointer;
|
|
box-shadow: 0px 0px 15px 0px #000;
|
|
|
|
&.sticky-top {
|
|
position: fixed;
|
|
width: calc(100vw - 30px - 1.5rem);
|
|
margin: auto;
|
|
z-index: 50;
|
|
left: 0;
|
|
right: 0;
|
|
top: 102px;
|
|
@media (min-width: 573px) {
|
|
top: 62px;
|
|
}
|
|
}
|
|
&.sticky-bottom {
|
|
position: fixed;
|
|
width: calc(100vw - 30px - 1.5rem);
|
|
margin: auto;
|
|
z-index: 50;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 50px;
|
|
@media (min-width: 430px) {
|
|
bottom: 56px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.cashapp-placeholder {
|
|
height: 54px;
|
|
|
|
&.non-stick {
|
|
height: 0px;
|
|
}
|
|
} |