36 lines
584 B
CSS
36 lines
584 B
CSS
@utility prose {
|
|
/* Font size */
|
|
@apply text-lg;
|
|
|
|
/* Headings (allow class overrides) */
|
|
h1:not([class*="heading-"]) {
|
|
@apply heading-1;
|
|
}
|
|
h2:not([class*="heading-"]) {
|
|
@apply heading-2;
|
|
}
|
|
h3:not([class*="heading-"]) {
|
|
@apply heading-3;
|
|
}
|
|
h4:not([class*="heading-"]) {
|
|
@apply heading-4;
|
|
}
|
|
|
|
/* Links */
|
|
@apply links:link-underline;
|
|
|
|
/* Lists */
|
|
ol:not([class*="list-"]) {
|
|
@apply list-ordered;
|
|
}
|
|
ul:not([class*="list-"]) {
|
|
@apply list-unordered;
|
|
}
|
|
|
|
/* Spacing */
|
|
@apply space-y-3;
|
|
|
|
/* WordPress */
|
|
@apply wordpress;
|
|
}
|