diff --git a/src/components/App/ActionsToolbar/GraphViewControl/index.tsx b/src/components/App/ActionsToolbar/GraphViewControl/index.tsx index 16eacaf5a..6b0a5fe70 100644 --- a/src/components/App/ActionsToolbar/GraphViewControl/index.tsx +++ b/src/components/App/ActionsToolbar/GraphViewControl/index.tsx @@ -47,13 +47,15 @@ const Wrapper = styled(Flex).attrs({ align: 'center', justify: 'space-between', })` - padding: 6px 6px 6px 11px; - background: ${colors.BG1}; - border-radius: 200px; + width: 447px; + height: 48px; + background: ${colors.appearanceBg}; + border-radius: 6px; .icon { color: ${colors.GRAY6}; font-size: 20px; cursor: pointer; + padding: 12px 20px; &:hover { color: ${colors.GRAY3}; @@ -65,6 +67,9 @@ const Wrapper = styled(Flex).attrs({ &.active { color: ${colors.white}; + background: ${colors.primaryBlue}; + padding: 12px 20px; + border-radius: 6px; } } diff --git a/src/components/App/ActionsToolbar/index.tsx b/src/components/App/ActionsToolbar/index.tsx index 4575abf31..943865f81 100644 --- a/src/components/App/ActionsToolbar/index.tsx +++ b/src/components/App/ActionsToolbar/index.tsx @@ -4,7 +4,7 @@ import { useAppStore } from '~/stores/useAppStore' import { useDataStore } from '~/stores/useDataStore' import { useSelectedNode } from '~/stores/useGraphStore' import { CameraRecenterControl } from './CameraRecenterControl' -import { GraphViewControl } from './GraphViewControl' +import { GraphViewControl } from '~/components/common/GraphViewControl' import { PlayerControl } from './PlayerControl' export const ActionsToolbar = () => { diff --git a/src/components/SettingsModal/SettingsView/Appearance/index.tsx b/src/components/SettingsModal/SettingsView/Appearance/index.tsx index cc9c958ca..02615b79f 100644 --- a/src/components/SettingsModal/SettingsView/Appearance/index.tsx +++ b/src/components/SettingsModal/SettingsView/Appearance/index.tsx @@ -27,7 +27,8 @@ export const Appearance: FC = ({ onClose }) => { Default graph view: - + +