Skip to content

Commit

Permalink
fix: fixed sub heading for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
invisiblemask committed Nov 25, 2024
1 parent ecbda3e commit 717b8d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/client/HIIQHolders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function HIIQHolders() {
<h1 className="text-base lg:text-2xl font-semibold">
HiIQ Token Holders
</h1>
<p className="text-sm lg:text-base font-medium text-[#475569] dark:text-gray500">
<p className="text-sm lg:text-base font-medium text-[#475569] dark:text-[#D2D2D2]">
View key data and insights on HiIQ token holders.
</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/dashboard/PageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { PageHeaderPropsType } from '@/types/PageHeader'

const PageHeader = ({ header, body, portfolios }: PageHeaderPropsType) => {
return (
<Flex direction="column" gap="2">
<Flex direction="column" gap="1">
<Heading fontWeight="bold" fontSize={{ md: 'xl', lg: '2xl' }}>
{header}
</Heading>
Expand Down Expand Up @@ -48,7 +48,7 @@ const PageHeader = ({ header, body, portfolios }: PageHeaderPropsType) => {
{body && (
<Text
fontSize={{ base: 'sm', md: 'md' }}
color="gray.500"
color="#D2D2D2"
fontWeight="medium"
>
{body}
Expand Down

0 comments on commit 717b8d0

Please sign in to comment.