Skip to content

Commit

Permalink
Merge pull request #28 from joshsoftware/bugs-fix
Browse files Browse the repository at this point in the history
fix the ui bugs
  • Loading branch information
ankitatjosh authored Oct 1, 2024
2 parents 8783e89 + 1541a8c commit c923f0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/src/app/new/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ const page = async () => {
if (!user) return redirect("/signin");

return (
<div className="flex flex-col w-full h-screen pt-16 px-0 md:px-16">
<div className="flex justify-start w-full px-4 mt-8">
<div className="flex flex-col w-full h-screen pt-12 px-0">
<div className="flex justify-start w-full mt-4">
<NavigateBack href="/" />
</div>
<div className="flex flex-1 justify-center items-center">
<div className="flex flex-1 justify-center items-start md:mt-16">
<RecorderCard userId={user.id} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Header = () => {
alt="Josh Logo"
/>
</div>
<div className="flex gap-2 w-full justify-end">
<div className="flex gap-2 min-w-fit justify-end">
<Link
href={"/new"}
className="text-white hover:underline"
Expand Down

0 comments on commit c923f0d

Please sign in to comment.