Skip to content

Commit

Permalink
feat: add text black default for accordion in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
soyricardodev committed Jul 14, 2024
1 parent bf3ee0e commit 27f55a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/gifting-concierge/src/app/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export function Footer({ isDark }: { isDark?: boolean }) {

<Accordion
type="multiple"
className={cn("block sm:hidden dark:text-white", {
className={cn("block sm:hidden text-black dark:text-white", {
dark: isDark,
})}
>
Expand Down Expand Up @@ -471,7 +471,7 @@ export function Footer({ isDark }: { isDark?: boolean }) {
</Link>
</p>

<p className="hidden sm:block mt-4 text-sm text-gray-500 dark:text-white sm:order-first sm:mt-0">
<p className="hidden sm:block mt-4 text-sm text-black dark:text-white sm:order-first sm:mt-0">
&copy; {new Date().getFullYear()} The Liaison
</p>
</div>
Expand Down

0 comments on commit 27f55a7

Please sign in to comment.