From 2c4cefff97303ae645abb4b2ac6c7af4c1c34e26 Mon Sep 17 00:00:00 2001 From: JimmFly Date: Fri, 6 Jan 2023 15:05:07 +0800 Subject: [PATCH] chore: remove unused style --- .../src/components/workspace-modal/styles.ts | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/packages/app/src/components/workspace-modal/styles.ts b/packages/app/src/components/workspace-modal/styles.ts index a54b191fc..40a8bcc37 100644 --- a/packages/app/src/components/workspace-modal/styles.ts +++ b/packages/app/src/components/workspace-modal/styles.ts @@ -1,7 +1,4 @@ import { displayFlex, styled } from '@/styles'; -import MenuItem from '@mui/material/MenuItem'; -import FormControl from '@mui/material/FormControl'; -import Select from '@mui/material/Select'; export const StyledTitle = styled.div(() => { return { @@ -39,20 +36,3 @@ export const StyledButton = styled.div(({ theme }) => { ...displayFlex('center', 'center'), }; }); -export const StyledFormControl = styled(FormControl)(({ theme }) => { - return { - position: 'absolute', - minWidth: '100px', - right: '50px', - backgroundColor: theme.colors.popoverBackground, - }; -}); -export const StyledSelect = styled(Select)(({ theme }) => { - return { - backgroundColor: theme.colors.popoverBackground, - color: theme.colors.popoverColor, - }; -}); -export const StyledMenuItem = styled(MenuItem)(() => { - return {}; -});