Skip to content

Commit

Permalink
Refactor UI layout in index.html and App.tsx, fix flex layout issue, …
Browse files Browse the repository at this point in the history
…and update balance display
  • Loading branch information
daniel-vahn committed May 3, 2024
1 parent 9b01226 commit ec785c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body style="height: 90vh; overflow: hidden">
<body style="height: 100vh; overflow: hidden">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function App() {
};

return (
<div className="flex flex-col overflow-y-auto overflow-x-hidden min-h-full h-full w-screen rounded-xl bg-customGrayWallet">
<div className="flex flex-col min-h-full h-full w-screen rounded-xl bg-customGrayWallet">
{view === View.LANDING && (
<>
<div className="components-container mb-2">
Expand Down

0 comments on commit ec785c2

Please sign in to comment.