Skip to content

Commit

Permalink
refactor: replace collapse icon
Browse files Browse the repository at this point in the history
  • Loading branch information
d3george authored and d3george committed Nov 8, 2024
1 parent afeeb58 commit 0ca40db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/layouts/dashboard/nav/nva-logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ type Props = {
};
export default function NavLogo({ collapsed, onToggle }: Props) {
const { themeLayout } = useSettings();
const { colorPrimary, colorBorder, colorTextSecondary, colorBgContainer } = useThemeToken();
const { colorPrimary, colorTextSecondary, colorBgContainer, colorBorderSecondary } =
useThemeToken();
return (
<div
style={{ height: `${HEADER_HEIGHT}px` }}
Expand All @@ -36,7 +37,7 @@ export default function NavLogo({ collapsed, onToggle }: Props) {
)}
style={{
fontSize: 16,
border: `1px solid ${colorBorder}`,
border: `1px solid ${colorBorderSecondary}`,
backgroundColor: colorBgContainer,
}}
>
Expand Down

0 comments on commit 0ca40db

Please sign in to comment.