From 5ee02a1b38ff8010e15150e9e2a43a2cb00d3e4d Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 12 Jun 2023 13:57:42 +0800 Subject: [PATCH] More colors --- packages/web/components/elements/Button.tsx | 2 +- .../templates/homeFeed/LibraryFilterMenu.tsx | 60 ------------------- 2 files changed, 1 insertion(+), 61 deletions(-) diff --git a/packages/web/components/elements/Button.tsx b/packages/web/components/elements/Button.tsx index dd7e39954..e405a5995 100644 --- a/packages/web/components/elements/Button.tsx +++ b/packages/web/components/elements/Button.tsx @@ -312,7 +312,7 @@ export const IconButton = styled(Button, { height: '28px', color: '#898989', border: 'unset', - background: '$thBackground', + background: 'transparent', boxSizing: 'border-box', borderRadius: 6, }, diff --git a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx index f836895c4..3cc715600 100644 --- a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx +++ b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx @@ -448,66 +448,6 @@ function LabelButton(props: LabelButtonProps): JSX.Element { ) } -type AddLinkButtonProps = { - showAddLinkModal: () => void -} - -function AddLinkButton(props: AddLinkButtonProps): JSX.Element { - const currentTheme = currentThemeName() - const isDark = currentTheme == 'Dark' - - return ( - <> - - - - - ) -} - type ViewAllButtonProps = { state: boolean setState: (state: boolean) => void