Skip to content

Commit

Permalink
fix(Heading): text-color variable
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenibir committed Nov 13, 2024
1 parent a92d9a0 commit 0528649
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/app/[lang]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default async function Index({ params: { lang } }: PageProps) {
return (
<div className="w-full px-6 py-4 overflow-auto">
<Container>
<Heading className="mb-4" size="9" color="primary" weight="medium" align="center">All your spaces, in one place</Heading>
<Heading className="mb-4" size="8" color="secondary" weight="medium" align="center">All your spaces, in one place</Heading>
<div data-testid="dho-list-container" className="w-full">
{daos.map((dao) => (
<div key={dao.name} className="mb-5">
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/atoms/heading/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const headingVariants = cva(
right: 'text-right',
},
color: {
primary: 'text-white',
secondary: 'text-gray-500',
primary: 'text-primary-foreground',
secondary: 'text-secondary-foreground',
},
},
defaultVariants: {
Expand Down

0 comments on commit 0528649

Please sign in to comment.