Skip to content

Commit 46ab4ed

Browse files
committed
fix: Most Popular badge visible in light theme
bg-primary Tailwind class had no color mapping, causing white-on-white text. Use inline CSS variables matching the existing pattern.
1 parent f5e8fed commit 46ab4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/pricing.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import Layout from '../layouts/Layout.astro';
5151
<!-- Commercial Free -->
5252
<div class="card flex flex-col h-full border-primary/30 relative">
5353
<div class="absolute -top-3 left-1/2 -translate-x-1/2">
54-
<span class="text-sm font-semibold px-4 py-1 rounded-full bg-primary text-white">Most popular</span>
54+
<span class="text-sm font-semibold px-4 py-1 rounded-full" style="background-color: var(--color-primary); color: var(--color-btn-text);">Most popular</span>
5555
</div>
5656
<div class="flex-1">
5757
<h2 class="text-xl font-bold mb-2">Commercial License</h2>

0 commit comments

Comments
 (0)