23 lines
457 B
CSS
23 lines
457 B
CSS
/* 1. Heading Component */
|
|
.c-heading {
|
|
@apply mb-8 space-y-0.5;
|
|
|
|
&.c-heading--small {
|
|
@apply mb-0 space-y-0;
|
|
|
|
.c-heading__title {
|
|
@apply mb-0.5 text-base font-medium tracking-normal;
|
|
}
|
|
}
|
|
|
|
.c-heading__title {
|
|
@apply text-xl font-semibold tracking-tight;
|
|
color: var(--foreground);
|
|
}
|
|
|
|
.c-heading__description {
|
|
@apply text-sm;
|
|
color: var(--muted-foreground);
|
|
}
|
|
}
|