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

fix: minor connectwallet changes #40

Merged
merged 1 commit into from
Nov 25, 2024
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
4 changes: 2 additions & 2 deletions src/components/Button/InternalButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const InternalButton = <
className={classNames(
variantClassNames(variant as InternalButtonVariant, {
wallet:
"ink:bg-background-light-transparent ink:px-1.5 ink:py-2 ink:text-body-2 ink:font-bold ink:text-text-default ink:hover:bg-background-light ink:disabled:bg-background-light-transparent-disabled ink:disabled:text-muted ink:active:bg-background-light",
"ink:bg-background-light-transparent ink:pl-1 ink:pr-1.5 ink:py-2 ink:text-body-2 ink:font-bold ink:text-text-default ink:hover:bg-background-light ink:disabled:bg-background-light-transparent-disabled ink:disabled:text-muted ink:active:bg-background-light",
"wallet-inside":
"ink:bg-background-light-invisible ink:px-1.5 ink:rounded-xs ink:text-body-2 ink:font-bold ink:text-text-default ink:hover:bg-background-container ink:disabled:bg-background-light-transparent-disabled ink:disabled:text-muted ink:active:bg-background-light",
}),
Expand All @@ -56,7 +56,7 @@ export const InternalButton = <
className={classNames(
"ink:flex ink:items-center ink:justify-center",
variantClassNames(variant as InternalButtonVariant, {
wallet: "ink:size-4 ink:-my-[10px]",
wallet: "ink:size-4",
"wallet-inside": "ink:size-3",
})
)}
Expand Down
5 changes: 0 additions & 5 deletions src/components/Modal/Modal.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ const meta: Meta<ModalProps> = {
},
],
component: Modal,
parameters: {
backgrounds: {
default: "container",
},
},
tags: ["autodocs"],
argTypes: {},
args: {
Expand Down
5 changes: 0 additions & 5 deletions src/components/Wallet/ConnectWallet.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ import { WalletProvider } from "../../decorators/WalletProvider";

const meta: Meta<ConnectWalletProps> = {
title: "Components/ConnectWallet",
parameters: {
backgrounds: {
default: "container",
},
},
decorators: [
WalletProvider,
(Story) => <div className="ink:min-h-[300px]">{Story()}</div>,
Expand Down
Loading