Skip to content

Commit

Permalink
feat(membership): show special messages to paid and lifetime members
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Sep 2, 2024
1 parent 1ddb4ca commit 99c9b19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/users/views/PatreonMembership.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ export function PatreonMembership(): JSX.Element | null {
<code style={{ color: 'var(--color-blueberry-accent)' }}>{tierTitle}</code>
{isMember && (
<i
className={isPaidMember ? 'icon-pkg-shiny' : 'icon-pkg-ribbon'}
className={isLifetime ? 'icon-pkg-ribbon' : 'icon-pkg-shiny'}
style={{
color: isPaidMember ? 'orange' : 'cyan',
color: isLifetime ? 'cyan' : 'orange',
fontSize: '1.2rem',
marginLeft: '0.2rem',
}}
Expand Down

1 comment on commit 99c9b19

@vercel
Copy link

@vercel vercel bot commented on 99c9b19 Sep 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.