From 06035fb6f0b54f1e502f532d7ac63419f7655ee4 Mon Sep 17 00:00:00 2001 From: ajnart Date: Tue, 7 Jun 2022 00:15:19 +0200 Subject: [PATCH] :lipstick: Very minor fix the the AppShelf UI --- src/components/AppShelf/AppShelf.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) => {