Skip to content

Commit

Permalink
fix: optimise faq text padding for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
t1gu1 committed Oct 13, 2023
1 parent 29e4545 commit 7c0b111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/faq.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const faqs: Array<FAQItem> = [
<ul class="grid max-w-7xl grid-cols-1 gap-7 md:grid-cols-2">
{
faqs.map(({ question, answer }) => (
<li class="flex flex-col gap-4 p-6">
<li class="flex flex-col gap-4 md:p-6">
<p class="font-extrabold text-xl" set:html={question} />
<p class="text-offset text-sm" set:html={answer} />
</li>
Expand Down

0 comments on commit 7c0b111

Please sign in to comment.