mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
edda9f71ea
* Initial crack at simple only gas slider component. * Work on advanced component. Refactor redux and components to specify gas limit vs price. * Convert fee summary to a render cbesque thing. * Rework responsive columns. * Remove force offline button. * Tweak styles. * Fix tscheck issues, remove unneeded prop. * Fix references to GasField * Gas slider in lite send. * Make gas slider network-aware for symbol and price calculation.
26 lines
384 B
SCSS
26 lines
384 B
SCSS
@import 'common/sass/variables';
|
|
|
|
$rail-height: 4px;
|
|
$handle-size: 22px;
|
|
$speed: 70ms;
|
|
|
|
.rc-slider {
|
|
&-rail {
|
|
background: $gray-lighter;
|
|
}
|
|
|
|
&-track {
|
|
background: $brand-primary;
|
|
}
|
|
|
|
&-handle {
|
|
top: 50%;
|
|
width: $handle-size;
|
|
height: $handle-size;
|
|
background: $brand-primary;
|
|
margin: 0;
|
|
border: none;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|