Skip to content

Commit 379a9de

Browse files
committed
refactor: simplify faq content
Signed-off-by: Adam Setch <[email protected]>
1 parent 05f9045 commit 379a9de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/faq.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface FAQFrontmatter {
2424
{
2525
faqs.map((faq) => (
2626
<AccordionItem title={faq.frontmatter.title}>
27-
<div class="markdown" set:html={faq.compiledContent()} />
27+
<div class="faq" set:html={faq.compiledContent()} />
2828
</AccordionItem>
2929
))
3030
}

src/styles/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ a:not(.gitify-repo) {
99
@apply hover:underline;
1010
}
1111

12-
ul {
12+
.faq ul {
1313
@apply list-disc m-4;
1414
}
1515

16-
ul > li {
16+
.faq ul > li {
1717
@apply m-2;
1818
}
1919

0 commit comments

Comments
 (0)