mirror of
https://github.com/jeffvli/feishin.git
synced 2026-08-08 05:12:57 +02:00
30 lines
543 B
CSS
30 lines
543 B
CSS
.root {
|
|
& [data-disabled='true'] {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.input {
|
|
color: var(--theme-colors-surface-foreground);
|
|
background: var(--theme-colors-surface);
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.section {
|
|
color: var(--theme-colors-foreground-muted);
|
|
}
|
|
|
|
.required {
|
|
color: var(--theme-colors-state-error);
|
|
}
|
|
|
|
.label {
|
|
margin-bottom: var(--theme-spacing-xs);
|
|
}
|
|
|
|
.description {
|
|
margin-bottom: var(--theme-spacing-xs);
|
|
font-size: var(--theme-font-size-xs);
|
|
color: var(--theme-colors-foreground-muted);
|
|
}
|