diff --git a/package.json b/package.json index 24e4eab49..57e6b67f8 100644 --- a/package.json +++ b/package.json @@ -125,7 +125,7 @@ "@typescript-eslint/eslint-plugin": "5.51.0", "@typescript-eslint/parser": "5.51.0", "concurrently": "7.6.0", - "cypress": "12.4.0", + "cypress": "12.6.0", "cypress-localstorage-commands": "2.2.2", "env-cmd": "10.1.0", "eslint": "^8.32.0", diff --git a/src/components/main/ItemTypeTabs.tsx b/src/components/main/ItemTypeTabs.tsx index 8e5ecc9cb..389e063a8 100644 --- a/src/components/main/ItemTypeTabs.tsx +++ b/src/components/main/ItemTypeTabs.tsx @@ -23,6 +23,12 @@ import { InternalItemType, NewItemTabType } from '../../config/types'; const StyledTabs = styled(Tabs)(({ theme }) => ({ borderRight: `1px solid ${theme.palette.divider}`, maxWidth: 150, + + '& .MuiTabs-scrollButtons svg': { + background: theme.palette.primary.main, + borderRadius: '50px', + color: 'white', + }, })); type Props = { @@ -53,7 +59,8 @@ const ItemTypeTabs: FC = ({ onTypeChange, initialValue }) => { return (