Skip to content

Commit

Permalink
fix: currency select arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Oct 26, 2024
1 parent 47fabde commit 9229ec1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/wallet/New.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Navbar } from "../../components/Navbar";
import useStore from "../../state/store";
import { fiat } from "@getalby/lightning-tools";
import { localStorageKeys } from "../../constants";
import { PopiconsEditPencilDuotone } from "@popicons/react";
import { PopiconsChevronBottomDuotone, PopiconsEditPencilDuotone } from "@popicons/react";

export const DEFAULT_LABEL = "BuzzPay";

Expand Down Expand Up @@ -162,7 +162,7 @@ export function New() {
</p>
<div className="flex items-center justify-center">
<select
className="text-center m-2 w-[7ch] whitespace-nowrap mx-auto bg-transparent text-gray-400 cursor-pointer"
className="m-2 w-16 whitespace-nowrap mx-auto bg-transparent text-gray-400 cursor-pointer appearance-none"
value={currency}
onChange={handleCurrencyChange}
>
Expand All @@ -172,6 +172,7 @@ export function New() {
</option>
))}
</select>
<PopiconsChevronBottomDuotone className="h-4 w-4 -ml-4 pointer-events-none" />
</div>
</div>
<button type="button" className="flex items-center gap-2 mb-8" onClick={handleSetLabel}>
Expand Down

0 comments on commit 9229ec1

Please sign in to comment.