Files
2026-07-13 12:12:04 +08:00

24 lines
414 B
CSS

/* Surface component styles */
/* Block */
.surface {
@apply relative text-foreground;
}
/* Modifier - variant */
.surface--transparent {
@apply bg-transparent;
}
.surface--default {
@apply bg-surface text-surface-foreground;
}
.surface--secondary {
@apply bg-surface-secondary text-surface-secondary-foreground;
}
.surface--tertiary {
@apply bg-surface-tertiary text-surface-tertiary-foreground;
}