Skip to content

Commit

Permalink
remove not-prose, fixed padding for dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor committed Sep 26, 2023
1 parent d9210bb commit ea9ffa9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/app/components/PairSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@ export function PairSelector() {
dispatch(selectPairAddress(pairAddress));
};
return (
<div
className="dropdown dropdown-start w-full not-prose"
id="pair-selector"
>
<div className="dropdown dropdown-start w-full" id="pair-selector">
<label
tabIndex={0}
className="justify-between btn btn-block m-1 font-bold"
className="justify-between btn btn-block font-bold base-100"
>
<span>{pairSelector.name || "Loading"}</span>
<span className="float-right">
Expand All @@ -31,7 +28,7 @@ export function PairSelector() {
</label>
<ul
tabIndex={0}
className="dropdown-content z-[1] menu shadow bg-neutral rounded-box w-full mt-0 mb-0"
className="dropdown-content z-[1] menu shadow bg-neutral rounded-box w-full !my-0"
>
<li className="text-xs text-left uppercase text-secondary-content px-4">
Select a pair of tokens:
Expand Down

0 comments on commit ea9ffa9

Please sign in to comment.