💄 Very minor fix the the AppShelf UI

This commit is contained in:
ajnart
2022-06-07 00:15:19 +02:00
parent c1af0a087d
commit 06035fb6f0

View File

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