Skip to content

Commit

Permalink
fix: accordion trigger text causing open button to be misaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert committed Nov 20, 2023
1 parent faff578 commit 18f096e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/site/src/app/(home)/sections/FAQ/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const FAQ = async () => {
const questions = await getQuestions();
const faq = questions[0]["faqs"].map(({ _key, question, answer }) => ({
_key: _key,
question: <strong>{question}</strong>,
question: <strong className="w-10/12">{question}</strong>,
answer: <PortableText value={answer} />,
}));

Expand Down

0 comments on commit 18f096e

Please sign in to comment.