Skip to content

Commit 011a7fa

Browse files
committed
fix(react): update domain text color for dark mode
1 parent 6ee8ae1 commit 011a7fa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/react/src/components/auth0/my-organization/domain-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function DomainTableView({
144144
accessorKey: 'domain',
145145
title: t('domain_table.table.columns.domain'),
146146
width: '35%',
147-
render: (domain) => <div className="font-medium">{domain.domain}</div>,
147+
render: (domain) => <div className="font-medium text-primary">{domain.domain}</div>,
148148
},
149149
{
150150
type: 'text',

packages/react/src/components/auth0/my-organization/shared/domain-management/domain-verify/domain-verify-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function DomainVerifyModal({
105105
</span>
106106
<Badge variant="warning">{t('verification_status.pending')}</Badge>
107107
</div>
108-
<p className={cn('text-sm text-muted-foreground text-(length:--font-size-paragraph')}>
108+
<p className={'text-sm text-muted-foreground text-(length:--font-size-paragraph)'}>
109109
{t('verification_status.description')}
110110
</p>
111111
</div>

0 commit comments

Comments
 (0)