diff --git a/src/components/AppShelf/AppShelf.tsx b/src/components/AppShelf/AppShelf.tsx index a8859e614..4730f0b39 100644 --- a/src/components/AppShelf/AppShelf.tsx +++ b/src/components/AppShelf/AppShelf.tsx @@ -18,8 +18,11 @@ import { SortableAppShelfItem, AppShelfItem } from './AppShelfItem'; import { ModuleWrapper } from '../modules/moduleWrapper'; import { DownloadsModule } from '../modules'; -const useStyles = createStyles((theme, _) => ({ +const useStyles = createStyles((theme, _params) => ({ + item: { + borderBottom: 0, + overflow: 'hidden', border: '1px solid transparent', borderRadius: theme.radius.lg, marginTop: theme.spacing.md, @@ -28,6 +31,7 @@ const useStyles = createStyles((theme, _) => ({ itemOpened: { borderColor: theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[3], }, + })); const AppShelf = (props: any) => {