Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: improve responsiveness #149

Merged
merged 1 commit into from
Jul 22, 2024
Merged
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
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
Loading