Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pulling refs/heads/staging into test-staging #1993

Merged
merged 3 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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