Skip to content

Commit 961ae3c

Browse files
committed
🐛(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.
1 parent 726b50d commit 961ae3c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/frontend/apps/impress/src/features/left-panel/components/LeftPanelFavorites.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export const LeftPanelFavorites = () => {
4949
hasMore={docs.hasNextPage}
5050
isLoading={docs.isFetchingNextPage}
5151
next={() => void docs.fetchNextPage()}
52+
$padding="none"
5253
>
5354
{favoriteDocs.map((doc) => (
5455
<LeftPanelFavoriteItem key={doc.id} doc={doc} />

0 commit comments

Comments
 (0)