mirror of
https://codeberg.org/MarkusThielker/finances.git
synced 2025-04-12 05:08:43 +00:00
N-FIN-31: fix card and button alignment
This commit is contained in:
parent
e60561ffc0
commit
b064448119
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ export default async function AccountPage() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
<Card className="w-full max-w-md mt-12">
|
<Card className="w-full max-w-md md:mt-12">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Hey, {user?.username}!</CardTitle>
|
<CardTitle>Hey, {user?.username}!</CardTitle>
|
||||||
<CardDescription>This is your account overview.</CardDescription>
|
<CardDescription>This is your account overview.</CardDescription>
|
||||||
|
@ -81,7 +81,7 @@ export default async function AccountPage() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
<CardFooter className="space-x-4">
|
<CardFooter className="grid gap-4 grid-cols-1 md:grid-cols-2">
|
||||||
{
|
{
|
||||||
process.env.NODE_ENV === 'development' && (
|
process.env.NODE_ENV === 'development' && (
|
||||||
<GenerateSampleDataForm onSubmit={generateSampleData}/>
|
<GenerateSampleDataForm onSubmit={generateSampleData}/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue