input-range.module.scss 255 B

12345678910111213
  1. .input-range {
  2. border: var(--border-in-light);
  3. border-radius: 10px;
  4. padding: 5px 10px 5px 10px;
  5. font-size: 12px;
  6. display: flex;
  7. justify-content: space-between;
  8. max-width: 40%;
  9. input[type="range"] {
  10. max-width: calc(100% - 34px);
  11. }
  12. }