forked from XiaoMo/ChatGPT-Next-Web
14 lines
255 B
SCSS
14 lines
255 B
SCSS
.input-range {
|
|
border: var(--border-in-light);
|
|
border-radius: 10px;
|
|
padding: 5px 10px 5px 10px;
|
|
font-size: 12px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
max-width: 40%;
|
|
|
|
input[type="range"] {
|
|
max-width: calc(100% - 34px);
|
|
}
|
|
}
|