Skip to content
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
14 changes: 11 additions & 3 deletions packages/web-wallet/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,17 @@ function App() {
}, installedSnap ? RESCAN_INTERVAL : null);

return (
<Layout>
<Outlet />
</Layout>
<div className="flex flex-col min-h-screen">
<div className="w-full bg-yellow-100 border border-yellow-300 text-yellow-900 px-4 py-3 rounded-b-xl text-sm md:text-base">
<strong>Attention</strong> - this snap is under active development to bring it up to date
with the latest NU 6.1 update. Users may experience various issues until this update is
completed and should exercise caution if using the snap until the update is complete and
this banner is removed.
</div>
<Layout>
<Outlet />
</Layout>
</div>
);
}

Expand Down
8 changes: 1 addition & 7 deletions packages/web-wallet/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,7 @@ const Home: React.FC = () => {
}, [navigate, getAccountData, state.activeAccount, state.loading]);

return (
<div className="home-page flex flex-col items-stretch px-4 overflow-y-hidden">
<div className="w-full bg-yellow-100 border border-yellow-300 text-yellow-900 px-4 py-3 rounded-b-xl text-sm md:text-base mb-4">
<strong>Attention</strong> - this snap is under active development to bring it up to date
with the latest NU 6.1 update. Users may experience various issues until this update is
completed and should exercise caution if using the snap until the update is complete and
this banner is removed.
</div>
<div className="home-page flex items-start md:items-center justify-center px-4 overflow-y-hidden">
<div className="max-w-6xl w-full grid grid-cols-1 md:grid-cols-2 gap-14">
<div className="hidden md:flex items-end justify-end">
<FormTransferSvg />
Expand Down