Skip to content

Commit

Permalink
fix(CurrencySelect): improve paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed May 22, 2024
1 parent a73016b commit 2b0f3cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CurrencySelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export function CurrencySelect<const T extends string>({
tabIndex={-1}
className={clsx(
"scroll-py-1.5 overflow-auto",
!matchesEmpty && "p-1.5 pt-0",
!matchesEmpty && "p-1.5",
)}
>
{(matches ?? items).map((item) => (
Expand All @@ -141,7 +141,7 @@ export function CurrencySelect<const T extends string>({
</ComboboxList>
</div>
{matchesEmpty ? (
<div className="m-1.5 mt-0 px-2.5 py-2">No results found</div>
<div className="m-1.5 px-2.5 py-2">No results found</div>
) : null}
</SelectPopover>
</SelectProvider>
Expand Down

0 comments on commit 2b0f3cd

Please sign in to comment.