Skip to content

Commit

Permalink
feat(web): remove charge input (#1912)
Browse files Browse the repository at this point in the history
* test

* ok

---------

Co-authored-by: HUAHUAI23 <lim@outlook.com>
  • Loading branch information
HUAHUAI23 and HUAHUAI23 committed Mar 18, 2024
1 parent 27be959 commit c39772b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/src/components/ChargeButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,14 @@ export default function ChargeButton(props: { amount?: number; children: React.R
</div>
<InputGroup className="flex items-center pb-5">
<div className="w-20 text-lg text-second">{t("application.Recharge")}</div>
<InputLeftAddon className="!px-0 !pl-3" children="¥" />
<InputLeftAddon
style={{ backgroundColor: darkMode ? "#252934" : "#FAFBFB" }}
className="!px-0 !pl-3"
children="¥"
/>
<Input
ref={inputRef}
disabled
className={clsx("!w-5/12 !border-none !px-2", darkMode ? "" : "!bg-gray-100")}
value={amount}
onInput={(event) => {
Expand Down

0 comments on commit c39772b

Please sign in to comment.