William O'Beirne edda9f71ea Improved Gas UX (Pt. 1 - Gas Slider on Send) (#728)
* 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.
2018-01-07 10:43:06 -06:00

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%);
}
}