Skip to content

Commit 3c746b7

Browse files
authored
Merge pull request #61 from ChainSafe/irubido/smallCssImprovments
balances card column for smaller screen width, added missing cursor-pointer
2 parents 651689d + 6674e1b commit 3c746b7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/snap/snap.manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/MetaMask/template-snap-monorepo.git"
88
},
99
"source": {
10-
"shasum": "SA1fH7ay1ietGUsIELeD6rgpMuXu/rusR65jSdjCBrk=",
10+
"shasum": "H66kPf5KzVuH2Wh122uNoA/nMaSXORtaHfgw8z8u71o=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/web-wallet/src/components/CopyButton/CopyButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const CopyButton: React.FC<CopyButtonProps> = ({ textToCopy }) => {
3131
)}
3232
<button
3333
onClick={handleCopy}
34-
className="text-[#e27625] text-base font-semibold leading-normal"
34+
className="text-[#e27625] text-base font-semibold leading-normal cursor-pointer"
3535
>
3636
copy
3737
</button>

packages/web-wallet/src/pages/AccountSummary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function AccountSummary() {
5959
</div>
6060
</div>
6161
<div
62-
className={'rounded-2xl justify-start items-center gap-6 inline-flex'}
62+
className={'rounded-2xl justify-start items-center gap-6 flex flex-col min-[1000px]:flex-row'}
6363
>
6464
{BalanceCards.map((card) => renderBalanceCard(card))}
6565
</div>

packages/web-wallet/src/pages/Receive/Tab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Tab: React.FC<TabProps> = ({ label, isActive, onClick }) => {
1313
<div
1414
onClick={onClick}
1515
className={cn(
16-
'px-4 py-2 justify-center items-center gap-1.5 flex rounded-3xl',
16+
'px-4 py-2 justify-center items-center gap-1.5 flex rounded-3xl cursor-pointer',
1717
{
1818
'bg-[#e8e8e8] text-black font-semibold': isActive,
1919
'bg-transparent text-[#afafaf]': !isActive,

packages/web-wallet/src/pages/TransferBalance/Step1.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ function Step1({
167167
</div>
168168
)}
169169
<div className="justify-start items-start inline-flex">
170-
<Button onClick={() => handleContinue()} label="Continue" />
170+
<Button classNames='cursor-pointer' onClick={() => handleContinue()} label="Continue" />
171171
</div>
172172
</div>
173173
</div>

0 commit comments

Comments
 (0)