Skip to content

Commit 5e5a37e

Browse files
committed
chore(tailwindv4) update tailwind v4
1 parent 3ab3101 commit 5e5a37e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/features/layout/pages/layout-page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ export function LayoutPage({ children }: Props) {
4343
<div className="flex h-screen flex-col">
4444
<Header />
4545
<div className="flex flex-1 overflow-hidden">
46-
<LeftSideBarMenu />
47-
<div className="flex w-full flex-col">
46+
{/* <LeftSideBarMenu /> */}
47+
<div className="flex w-screen flex-col">
4848
<SubscriberStatus />
4949
{shouldPromptForTokens && <TokenPromptDialog />}
5050
<main ref={mainContent} className="flex flex-1 items-start overflow-y-auto overflow-x-hidden">
51-
<div className={cn('grid w-full mb-4 mx-4')}>{!shouldPromptForTokens ? children : undefined}</div>
51+
<div className={cn('grid w-full overflow-hidden mb-4 mx-4')}>{!shouldPromptForTokens ? children : undefined}</div>
5252
</main>
5353
</div>
5454
</div>

src/features/transaction-wizard/components/transactions-builder.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@ export function TransactionsBuilder({
339339
}, [activeAddress, commonButtonDisableProps])
340340

341341
return (
342-
<div>
343-
<div className="space-y-4">
342+
<div className="w-screen">
343+
<div className="space-y-4 w-full overflow-scroll">
344344
<div className="mb-4 flex items-center gap-2">
345345
{title}
346346
{!disableAddTransaction && (

0 commit comments

Comments
 (0)