Reduce dialog width

Reduce the width of the welcome and expense dialogs to improve the visibility of rounded corners.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-16 06:06:55 +00:00
parent 2f926e7a65
commit 2cb8a73bab
7 changed files with 13 additions and 10 deletions

View File

@@ -1,4 +1,3 @@
import React, { useState } from 'react';
import { PlusIcon } from 'lucide-react';
import { Dialog, DialogContent, DialogHeader, DialogTitle } from './ui/dialog';
@@ -100,7 +99,7 @@ const AddTransactionButton = () => {
</div>
<Dialog open={showExpenseDialog} onOpenChange={setShowExpenseDialog}>
<DialogContent className="sm:max-w-md">
<DialogContent className="w-[90%] max-w-sm mx-auto">
<DialogHeader>
<DialogTitle> </DialogTitle>
</DialogHeader>