Skip to content

Commit

Permalink
feat: remove card borders
Browse files Browse the repository at this point in the history
  • Loading branch information
belopash committed Jun 16, 2024
1 parent ad11f9e commit ac0bbbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const Field = styled(TextField)(({ theme }) => ({
paddingLeft: 5,
minHeight: 36,
},
border: `1px solid ${theme.palette.divider}`,
borderRadius: 6,
}));

Expand Down
3 changes: 2 additions & 1 deletion src/theme/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,8 @@ export const useCreateTheme = (mode: PaletteType) => {
MuiPaper: {
styleOverrides: {
elevation1: {
border: `1px solid ${colors.divider}`,
// border: `1px solid ${colors.divider}`,
border: 'none',
boxShadow: 'none',
},
rounded: {
Expand Down

0 comments on commit ac0bbbd

Please sign in to comment.