color-q/src/components/ColorComponentInput.module.css
2025-01-24 17:18:32 +08:00

25 lines
462 B
CSS

@layer components {
.rgb_input {
display: flex;
flex-direction: column;
align-items: stretch;
gap: var(--spacing-xs);
.extended_input_wrapper {
width: 100%;
}
.rgb_input {
text-align: right;
text-transform: uppercase;
}
.component_row {
display: flex;
flex-direction: row;
align-items: center;
gap: var(--spacing-xs);
.component_input {
flex: 1 0;
}
}
}
}