hippie-style/modules/io/_io_module.scss
sthag 225c1dd55c feat: Update to .io styles
- Combine element definitions for margin
- Add label handling
- Add .group for combinations with gap in between
2025-10-20 21:08:42 +02:00

68 lines
No EOL
712 B
SCSS

input[type="range"] {
accent-color: $color_text_io;
}
header,
aside,
footer {
&.io {
nav {
li,
label,
input[type="range"] {
margin: 0;
}
}
nav>span,
nav label,
.a_button {
@extend %basic;
@extend %size_io_button;
}
.a_button {
@extend .button_io;
}
.group {
display: flex;
flex-flow: row nowrap;
}
input:not([type="range"]) {
@extend .input_io;
}
select {
@extend .io_select;
}
button {
@extend .button_io;
&>* {
pointer-events: none;
}
}
}
}
header,
aside {
&.io {
padding: $space_basic;
textarea {
@extend .io_textarea;
}
}
}
header,
footer {
&.io {
@extend %flex-inline;
align-items: stretch;
}
}