Skip to content

Commit

Permalink
Merge pull request #1993 from zeitgeistpm/staging
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 17, 2023
2 parents cdf1282 + 705abd7 commit 3de3694
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/ui/TabGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const TabGroup = <T extends readonly string[]>({
}
>
{Icon && (
<div className="relative mr-3 h-[40px] w-[40px]">
<div className="relative h-[40px] w-[40px]">
<Icon fill={isDisabled ? "#C3C9CD" : undefined} />
</div>
)}
Expand Down
14 changes: 7 additions & 7 deletions pages/deposit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const ResultButtons = ({
href={item.url}
target="_blank"
className={
"center flex h-16 cursor-pointer items-center justify-center gap-2 rounded-lg bg-white outline-none"
"center flex cursor-pointer items-center justify-center gap-2 rounded-lg bg-white p-3 leading-10 outline-none"
}
>
<div>{item.label}</div>
Expand Down Expand Up @@ -307,7 +307,7 @@ const DepositPage: NextPage = () => {

return (
<>
<h2 className="mb-6 px-2">Deposit Tokens</h2>
<h2 className="mb-6 mt-8 px-2">Deposit Tokens</h2>
<div className="[&>*:not(:last-child)]:mb-8">
<p className="mt-3 p-2">
You need some funds to make predictions on our platform. Select from
Expand All @@ -319,8 +319,8 @@ const DepositPage: NextPage = () => {
labels={DepositMethodLabels}
selected={method}
onChange={setMethod}
className="h-16"
itemClassName="center outline-none rounded-lg bg-white"
className=""
itemClassName="text-center center outline-none rounded-lg bg-white p-3 sm:leading-10"
selectedItemClassName="!bg-ice-hush"
/>
<TabGroup
Expand All @@ -331,7 +331,7 @@ const DepositPage: NextPage = () => {
onChange={setCurrency}
disabled={["usdt"]}
className="h-36"
itemClassName="center outline-none rounded-lg bg-white"
itemClassName="flex flex-col sm:flex-row gap-3 items-center center outline-none rounded-lg bg-white"
disabledItemClassName="!bg-misty-harbor text-sky-600"
selectedItemClassName="!bg-ice-hush"
/>
Expand All @@ -343,8 +343,8 @@ const DepositPage: NextPage = () => {
onChange={setPaymentMethod}
disabled={disabledPaymentMethods}
disabledItemClassName="!bg-misty-harbor text-sky-600"
className="h-16"
itemClassName="center outline-none rounded-lg bg-white"
className=""
itemClassName="text-center center outline-none rounded-lg bg-white p-3 leading-10"
selectedItemClassName="!bg-ice-hush"
/>
)}
Expand Down

0 comments on commit 3de3694

Please sign in to comment.