Skip to content

Commit

Permalink
fix button style
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Aug 7, 2024
1 parent c6085c1 commit 8ca6aea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/LoginButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
import WalletWrapper from './WalletWrapper';

export default function LoginButton() {
return <WalletWrapper text="Log in" />;
return <WalletWrapper className="min-w-[90px]" text="Log in" />;
}
2 changes: 1 addition & 1 deletion src/components/SignupButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import WalletWrapper from './WalletWrapper';
export default function SignupButton() {
return (
<WalletWrapper
className="ockConnectWallet_Container bg-slate-200 text-[#030712] hover:bg-slate-300"
className="ockConnectWallet_Container min-w-[90px] shrink bg-slate-200 text-[#030712] hover:bg-slate-300"
text="Sign up"
withWalletAggregator={true}
/>
Expand Down

0 comments on commit 8ca6aea

Please sign in to comment.