Skip to content

Commit

Permalink
layout fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardozgz committed Jan 13, 2025
1 parent df441ea commit 5b1cd73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/website/src/app/account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Page() {
return (
<>
<div className="my-8 flex flex-col gap-8">
<div className="flex flex-row items-center justify-center gap-5">
<div className="my-8 flex w-full flex-col gap-8 p-4 sm:max-w-[600px] [&>*]:w-full">
{discordUser.isSuccess ? (
<img
src={discordUser.data.avatar}
Expand Down Expand Up @@ -61,10 +61,10 @@ export default function Page() {
<Skeleton className="w-50 h-9" />
)}
{user.isSuccess && <DisplayUserBadges badges={user.data.badges} />}
<div className="flex flex-row gap-2">
<div className="flex flex-row flex-wrap gap-2">
<DeleteButton />
<Link href={Routes.LogOut}>
<Button className="grow" size={"sm"} icon={LogOutIcon}>
<Link href={Routes.LogOut} className="grow">
<Button className="w-full" size={"sm"} icon={LogOutIcon}>
{t("pages.account.page.logoutButton")}
</Button>
</Link>
Expand Down

0 comments on commit 5b1cd73

Please sign in to comment.