diff --git a/src/components/AppShelf/AppShelf.tsx b/src/components/AppShelf/AppShelf.tsx index 54b373fd3..d971144d1 100644 --- a/src/components/AppShelf/AppShelf.tsx +++ b/src/components/AppShelf/AppShelf.tsx @@ -37,7 +37,7 @@ export function AppShelfItem(props: any) { style={{ boxShadow: hovering ? '0px 0px 3px rgba(0, 0, 0, 0.5)' : '0px 0px 1px rgba(0, 0, 0, 0.5)', backgroundColor: - theme.colorScheme === 'dark' ? theme.colors.dark[6] : theme.colors.gray[1], + theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[0], }} radius="md" > diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 4568a1ca7..272d367a2 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,4 +1,3 @@ -import { Group } from '@mantine/core'; import { getCookie, setCookies } from 'cookies-next'; import { GetServerSidePropsContext } from 'next'; import path from 'path'; @@ -6,7 +5,6 @@ import fs from 'fs'; import { useEffect } from 'react'; import AppShelf from '../components/AppShelf/AppShelf'; import LoadConfigComponent from '../components/Config/LoadConfig'; -import SearchBar from '../components/SearchBar/SearchBar'; import { Config } from '../tools/types'; import { useConfig } from '../tools/state';