@olwiba/ui 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/marketing/PricingSection.tsx +7 -2
package/package.json
CHANGED
|
@@ -229,7 +229,12 @@ export function PricingSection({
|
|
|
229
229
|
>
|
|
230
230
|
{entry.label}
|
|
231
231
|
{saveBadges[entry.key] && (
|
|
232
|
-
|
|
232
|
+
// `default` (primary), not `secondary`: the toggle is
|
|
233
|
+
// `bg-muted` with a `bg-background` active tab, and a
|
|
234
|
+
// secondary badge is the same grey as both — the
|
|
235
|
+
// saving is the incentive, so it has to carry brand
|
|
236
|
+
// colour to read at all.
|
|
237
|
+
<Badge variant="default" className="text-xs">
|
|
233
238
|
{saveBadges[entry.key]}
|
|
234
239
|
</Badge>
|
|
235
240
|
)}
|
|
@@ -259,7 +264,7 @@ export function PricingSection({
|
|
|
259
264
|
>
|
|
260
265
|
Annual
|
|
261
266
|
{saveBadge && (
|
|
262
|
-
<Badge variant="
|
|
267
|
+
<Badge variant="default" className="text-xs">{saveBadge}</Badge>
|
|
263
268
|
)}
|
|
264
269
|
</Button>
|
|
265
270
|
</>
|