From 16adf11258cae7717d1a29230d7dd615cdd80809 Mon Sep 17 00:00:00 2001 From: Mohammed Efaz <44260523+WhiteHades@users.noreply.github.com> Date: Mon, 6 Apr 2026 21:24:48 +0600 Subject: [PATCH] fix(library): align grid hover highlight corner radius (#3774) --- apps/readest-app/src/app/library/components/BookshelfItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/readest-app/src/app/library/components/BookshelfItem.tsx b/apps/readest-app/src/app/library/components/BookshelfItem.tsx index ec61e580..5784ef9d 100644 --- a/apps/readest-app/src/app/library/components/BookshelfItem.tsx +++ b/apps/readest-app/src/app/library/components/BookshelfItem.tsx @@ -393,7 +393,7 @@ const BookshelfItem: React.FC = ({ 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',