18 lines
315 B
CSS
18 lines
315 B
CSS
.range-slider::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: #798fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.range-slider::-moz-range-thumb {
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: #798fff;
|
|
cursor: pointer;
|
|
}
|