Skip to content

Commit

Permalink
💄 (dashboard) Fix folder color for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Dec 23, 2022
1 parent f224ab9 commit 752e78c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion apps/builder/src/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ export const PlusIcon = (props: IconProps) => (
)

export const FolderIcon = (props: IconProps) => (
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
<Icon
viewBox="0 0 24 24"
{...featherIconsBaseProps}
fill="currentColor"
{...props}
>
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
</Icon>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ export const FolderButton = ({
</MenuList>
</Menu>
<VStack spacing="4">
<FolderIcon fontSize={50} color="blue.500" fill="blue.500" />
<FolderIcon
fontSize={50}
color={useColorModeValue('blue.500', 'blue.400')}
/>
<Editable
defaultValue={folder.name}
fontSize="18"
Expand Down

0 comments on commit 752e78c

Please sign in to comment.