Skip to content

Commit

Permalink
Fix padding in sort menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kasya committed Jan 26, 2025
1 parent c5e53b3 commit 04437bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/SortBy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const SortBy = ({
<SelectItem
item={attribute}
key={attribute.value}
className="p-1 hover:bg-[#D1DBE6] dark:hover:bg-[#454545]"
className="p-1 px-3 hover:bg-[#D1DBE6] dark:hover:bg-[#454545]"
>
{attribute.label}
{attribute.value === selectedSortOption && (
Expand Down

0 comments on commit 04437bd

Please sign in to comment.