🐛(frontend) remove padding from ul in left panel favorites

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.
This commit is contained in:
Anthony LC
2025-08-28 15:39:42 +02:00
parent 726b50d6b5
commit 961ae3c39e

View File

@@ -49,6 +49,7 @@ export const LeftPanelFavorites = () => {
hasMore={docs.hasNextPage}
isLoading={docs.isFetchingNextPage}
next={() => void docs.fetchNextPage()}
$padding="none"
>
{favoriteDocs.map((doc) => (
<LeftPanelFavoriteItem key={doc.id} doc={doc} />