Skip to content

Commit

Permalink
fix: improve responsiveness (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban authored Jul 22, 2024
1 parent 3716edf commit 6199dd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/renderer/src/pages/(external)/redirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ export function Component() {
}, [])

return (
<div className="flex h-screen w-full flex-col items-center justify-center gap-10">
<div className="flex h-screen w-full flex-col items-center justify-center gap-10 px-4">
<Logo className="size-20" />
<UserAvatar className="bg-stone-100 px-10 py-4 text-2xl" />
<h1 className="text-3xl font-bold">
<h1 className="text-center text-3xl font-bold">
Successfully connected to
{" "}
{APP_NAME}
{" "}
Account
</h1>
<h2>
<h2 className="text-center">
You have successfully connected to
{" "}
{APP_NAME}
Expand All @@ -50,7 +50,7 @@ export function Component() {
{" "}
and safely close this page.
</h2>
<div className="center flex gap-4">
<div className="center flex flex-col gap-4 sm:flex-row">
<StyledButton
variant="text"
className="h-14 px-10 text-base"
Expand Down

0 comments on commit 6199dd2

Please sign in to comment.