Skip to content

Commit

Permalink
balances column for smaller screen width, cursor pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
irubido committed Feb 4, 2025
1 parent 651689d commit 6674e1b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/template-snap-monorepo.git"
},
"source": {
"shasum": "SA1fH7ay1ietGUsIELeD6rgpMuXu/rusR65jSdjCBrk=",
"shasum": "H66kPf5KzVuH2Wh122uNoA/nMaSXORtaHfgw8z8u71o=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const CopyButton: React.FC<CopyButtonProps> = ({ textToCopy }) => {
)}
<button
onClick={handleCopy}
className="text-[#e27625] text-base font-semibold leading-normal"
className="text-[#e27625] text-base font-semibold leading-normal cursor-pointer"
>
copy
</button>
Expand Down
2 changes: 1 addition & 1 deletion packages/web-wallet/src/pages/AccountSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function AccountSummary() {
</div>
</div>
<div
className={'rounded-2xl justify-start items-center gap-6 inline-flex'}
className={'rounded-2xl justify-start items-center gap-6 flex flex-col min-[1000px]:flex-row'}
>
{BalanceCards.map((card) => renderBalanceCard(card))}
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/web-wallet/src/pages/Receive/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Tab: React.FC<TabProps> = ({ label, isActive, onClick }) => {
<div
onClick={onClick}
className={cn(
'px-4 py-2 justify-center items-center gap-1.5 flex rounded-3xl',
'px-4 py-2 justify-center items-center gap-1.5 flex rounded-3xl cursor-pointer',
{
'bg-[#e8e8e8] text-black font-semibold': isActive,
'bg-transparent text-[#afafaf]': !isActive,
Expand Down
2 changes: 1 addition & 1 deletion packages/web-wallet/src/pages/TransferBalance/Step1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function Step1({
</div>
)}
<div className="justify-start items-start inline-flex">
<Button onClick={() => handleContinue()} label="Continue" />
<Button classNames='cursor-pointer' onClick={() => handleContinue()} label="Continue" />
</div>
</div>
</div>
Expand Down

0 comments on commit 6674e1b

Please sign in to comment.