Skip to content

Commit

Permalink
make sure cookie preferences is styled the same
Browse files Browse the repository at this point in the history
  • Loading branch information
KianNH committed Sep 23, 2024
1 parent 9c0e7c7 commit 02a829b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/overrides/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ if (
</div>
</div>
<div>
<ul class="flex gap-x-4 text-xs list-outside pl-0 justify-center">
<li class="text-gray-600 dark:text-gray-400 list-none">
<ul class="flex gap-x-4 text-xs list-outside pl-0 justify-center text-gray-600 dark:!text-gray-400">
<li class="list-none text-gray-600 dark:text-gray-400">
2024 Cloudflare, Inc.
</li>
{homepageLegalLinks.map(([text, href]) => (
Expand All @@ -117,7 +117,9 @@ if (
</a>
</li>
))}
{isProduction && <OneTrust />}
<li class="text-gray-600 dark:!text-gray-400">
{isProduction && <OneTrust />}
</li>
</ul>
</div>
</>
Expand Down

0 comments on commit 02a829b

Please sign in to comment.