fix(library): align grid hover highlight corner radius (#3774)

This commit is contained in:
Mohammed Efaz
2026-04-06 21:24:48 +06:00
committed by GitHub
parent ae2c421938
commit 16adf11258
@@ -393,7 +393,7 @@ const BookshelfItem: React.FC<BookshelfItemProps> = ({
className={clsx(
'visible-focus-inset-2 group',
mode === 'grid' &&
'sm:hover:bg-base-300/50 flex h-full flex-col px-0 py-2 sm:px-4 sm:py-4',
'sm:hover:bg-base-300/50 flex h-full flex-col px-0 py-2 sm:rounded-md sm:px-4 sm:py-4',
mode === 'list' && 'border-base-300 flex flex-col border-b py-2',
appService?.isMobileApp && 'no-context-menu',
pressing && mode === 'grid' ? 'not-eink:scale-95' : 'scale-100',