diff --git a/src/components/SettingsModal/SettingsView/Appearance/index.tsx b/src/components/SettingsModal/SettingsView/Appearance/index.tsx index 88619bc9b..ab2ad4bfc 100644 --- a/src/components/SettingsModal/SettingsView/Appearance/index.tsx +++ b/src/components/SettingsModal/SettingsView/Appearance/index.tsx @@ -24,7 +24,7 @@ export const Appearance: FC = ({ onClose }) => { diff --git a/src/components/SettingsModal/SettingsView/General/index.tsx b/src/components/SettingsModal/SettingsView/General/index.tsx index b4a34ef7d..5cf3a2247 100644 --- a/src/components/SettingsModal/SettingsView/General/index.tsx +++ b/src/components/SettingsModal/SettingsView/General/index.tsx @@ -66,7 +66,7 @@ export const General: FC = ({ initialValues }) => { ) : ( )} diff --git a/src/components/SettingsModal/SettingsView/index.tsx b/src/components/SettingsModal/SettingsView/index.tsx index 72acfd404..1e9071888 100644 --- a/src/components/SettingsModal/SettingsView/index.tsx +++ b/src/components/SettingsModal/SettingsView/index.tsx @@ -133,6 +133,8 @@ const TabPanelWrapper = styled(Flex)` max-height: 495px; height: fit-content; min-width: 480px; + overflow: hidden; + border-radius: 9px; ` const Wrapper = styled(Flex)` diff --git a/src/components/SettingsModal/SettingsView/utils/__tests__/index.tsx b/src/components/SettingsModal/SettingsView/utils/__tests__/index.tsx index 063eaccc7..2a4fd5757 100644 --- a/src/components/SettingsModal/SettingsView/utils/__tests__/index.tsx +++ b/src/components/SettingsModal/SettingsView/utils/__tests__/index.tsx @@ -1,5 +1,7 @@ +/* eslint-disable padding-line-between-statements */ import { fireEvent, render, screen } from '@testing-library/react' import * as React from 'react' +import '@testing-library/jest-dom' import { SettingsView } from '../../index' import * as useUserStoreModule from '../../../../../stores/useUserStore'