Skip to content

Commit

Permalink
Fix dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla committed Aug 31, 2024
1 parent 5b73e3e commit ca0dac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/widgets/Features2.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ const {
)}
{title && (
<h2
class="text-4xl md:text-5xl font-subheading font-semibold leading-tighter tracking-tighter mb-4"
class="text-4xl md:text-5xl font-subheading font-semibold leading-tighter tracking-tighter dark:bg-slate-900 dark:border-slate-800"
set:html={title}
/>
)}

{subtitle && (
<p
class="max-w-3xl mx-auto sm:text-center text-xl text-gray-700 dark:text-slate-400"
class="max-w-3xl mx-auto sm:text-center text-xl text-gray-700 dark:text-slate-400 dark:bg-slate-900 dark:border-slate-800"
set:html={subtitle}
/>
)}
Expand Down

0 comments on commit ca0dac1

Please sign in to comment.