chore: remove unused style

This commit is contained in:
JimmFly
2023-01-06 15:05:07 +08:00
parent df25adad70
commit 2c4cefff97

View File

@@ -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 {};
});