feat: New style for input range

- Exclude input range from .input_io
- Add TODO to replace .input_io and move to io_module
- Set accent color for input range
This commit is contained in:
sthag 2025-10-20 18:55:07 +02:00
parent 54f1de579c
commit 2d582a5032
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,7 @@
input[type="range"] {
accent-color: $color_text_io;
}
header,
aside,
footer {
@ -17,10 +21,14 @@ footer {
@extend .button_io;
}
input {
input:not([type="range"]) {
@extend .input_io;
}
input[type="range"] {
margin: 0;
}
select {
@extend .io_select;
}
@ -40,7 +48,7 @@ aside {
&.io {
padding: $space_basic;
input,
input:not([type="range"]),
button,
textarea,
select {