A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/gas-customization/gas-slider/index.scss

55 lines
998 B

.gas-slider {
position: relative;
width: 322px;
&__input {
width: 322px;
margin-left: -2px;
z-index: 2;
}
input[type=range] {
-webkit-appearance: none !important;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none !important;
height: 34px;
width: 34px;
background-color: var(--primary-blue);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
border-radius: 50%;
position: relative;
z-index: 10;
}
&__bar {
height: 6px;
width: 322px;
background: var(--alto);
display: flex;
justify-content: space-between;
position: absolute;
top: 16px;
z-index: 0;
border-radius: 4px;
}
&__colored {
height: 6px;
border-radius: 4px;
margin-left: 102px;
width: 322px;
z-index: 1;
background-color: var(--blizzard-blue);
}
&__labels {
@include H7;
display: flex;
justify-content: space-between;
margin-top: -6px;
color: var(--mid-gray);
}
}