Skip to content

Commit

Permalink
Refactor UI layout in App.tsx, fix flex layout issue, and update bala…
Browse files Browse the repository at this point in the history
…nce display
  • Loading branch information
daniel-vahn committed May 3, 2024
1 parent 6973276 commit a64adb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 h-screen w-screen rounded-xl bg-customGrayWallet">
<div className="flex flex-col h-full w-screen rounded-xl bg-customGrayWallet">
{view === View.LANDING && (
<>
<div className="components-container mb-2">
Expand Down Expand Up @@ -258,7 +258,7 @@ function App() {
<div className="components-container mb-2">
<BackButton goBack={goBack} />
<Avatar src={avatarTable} height="60%" />
<div className="flex flex-col bg-white pt-4 px-8 pb-8 min-h-fit gap-2 rounded-t-3xl rounded-b-xl shadow-custom-white">
<div className="flex flex-col bg-white pt-4 px-8 pb-2 min-h-fit gap-2 rounded-t-3xl rounded-b-xl shadow-custom-white">
<h2 className="headline">HORRAY!</h2>
<div className="text-sm font-semibold text-center text-customGrayAddress">
<p className="my-0 mx-auto">{account}</p>
Expand Down

0 comments on commit a64adb0

Please sign in to comment.