ChatGPT-Next-Web/app/components/input-range.module.scss

14 lines
255 B
SCSS
Raw Normal View History

.input-range {
border: var(--border-in-light);
border-radius: 10px;
2023-06-25 17:51:35 +00:00
padding: 5px 10px 5px 10px;
font-size: 12px;
display: flex;
2023-06-25 17:51:35 +00:00
justify-content: space-between;
max-width: 40%;
input[type="range"] {
2023-06-25 17:51:35 +00:00
max-width: calc(100% - 34px);
}
}