Spaces:
Running
Running
File size: 564 Bytes
394073d 09aaa98 394073d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
.header {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
align-items: center;
}
.inputLabel {
font-size: 13px !important;
font-weight: 600 !important;
color: #868e96 !important;
margin-bottom: 5px;
}
.inputField {
background-color: #25262b !important;
border-color: #373a40 !important;
color: #fff !important;
}
.inputField:focus {
border-color: #228be6 !important;
}
.sliderTrack {
background-color: #373a40;
}
.sliderThumb {
border-color: #228be6;
background-color: #1a1b1e;
}
|