Skip to content

Commit

Permalink
fix: fixed border and colour for dark and light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
invisiblemask committed Nov 22, 2024
1 parent 766bde7 commit dc3e6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/dashboard/(hiiq)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function layout({ children }: { children: React.ReactNode }) {
</Link>
))}
</div>
<div className="absolute h-[0.5px] w-[calc(100vw)] -ml-[calc(50vw-50%)] border-b top-9 -z-10" />
<div className="absolute h-[0.5px] w-[calc(100vw)] -ml-[calc(50vw-50%)] border-b border-gray-300 dark:border-gray-600 top-9 -z-10" />
<div>{children}</div>
</div>
)
Expand Down
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]">
<p className="text-sm lg:text-base font-medium text-[#475569] dark:text-gray500">
View key data and insights on HiIQ token holders.
</p>
</div>
Expand Down

0 comments on commit dc3e6c5

Please sign in to comment.