From 961ae3c39eee1be838f910aba3ad98378eff553d Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Thu, 28 Aug 2025 15:39:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20remove=20padding=20fro?= =?UTF-8?q?m=20ul=20in=20left=20panel=20favorites?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We recently change from a div to a ul for better semantics. ul include by default padding, we remove it to align with the design. --- .../src/features/left-panel/components/LeftPanelFavorites.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/apps/impress/src/features/left-panel/components/LeftPanelFavorites.tsx b/src/frontend/apps/impress/src/features/left-panel/components/LeftPanelFavorites.tsx index d65d2dd1..7f1c7025 100644 --- a/src/frontend/apps/impress/src/features/left-panel/components/LeftPanelFavorites.tsx +++ b/src/frontend/apps/impress/src/features/left-panel/components/LeftPanelFavorites.tsx @@ -49,6 +49,7 @@ export const LeftPanelFavorites = () => { hasMore={docs.hasNextPage} isLoading={docs.isFetchingNextPage} next={() => void docs.fetchNextPage()} + $padding="none" > {favoriteDocs.map((doc) => (