mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-19 20:20:16 +09:00
13 lines
221 B
SCSS
13 lines
221 B
SCSS
.input-range {
|
|
border: var(--border-in-light);
|
|
border-radius: 10px;
|
|
padding: 5px 15px 5px 10px;
|
|
font-size: 12px;
|
|
display: flex;
|
|
max-width: 40%;
|
|
|
|
input[type="range"] {
|
|
max-width: calc(100% - 50px);
|
|
}
|
|
}
|