update dialog design
This commit is contained in:
+9
-6
@@ -24,27 +24,30 @@ export function App() {
|
|||||||
onNotificationsClick={() => setShowNotifications(true)}
|
onNotificationsClick={() => setShowNotifications(true)}
|
||||||
/>
|
/>
|
||||||
<Dialog open={showSettings} onOpenChange={setShowSettings}>
|
<Dialog open={showSettings} onOpenChange={setShowSettings}>
|
||||||
<DialogContent className="grid-rows-[auto_1fr]">
|
<DialogContent showCloseButton>
|
||||||
<DialogHeader className="border-b -mx-4 px-4 pb-4">
|
<DialogHeader>
|
||||||
<DialogTitle>Settings</DialogTitle>
|
<DialogTitle>Settings</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<SettingsView/>
|
<SettingsView/>
|
||||||
|
<DialogFooter showCloseButton />
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<Dialog open={showJobs} onOpenChange={setShowJobs}>
|
<Dialog open={showJobs} onOpenChange={setShowJobs}>
|
||||||
<DialogContent className="grid-rows-[auto_1fr]">
|
<DialogContent>
|
||||||
<DialogHeader className="border-b -mx-4 px-4 pb-4">
|
<DialogHeader>
|
||||||
<DialogTitle>Running Jobs</DialogTitle>
|
<DialogTitle>Running Jobs</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<JobsView />
|
<JobsView />
|
||||||
|
<DialogFooter showCloseButton />
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<Dialog open={showNotifications} onOpenChange={setShowNotifications}>
|
<Dialog open={showNotifications} onOpenChange={setShowNotifications}>
|
||||||
<DialogContent className="grid-rows-[auto_1fr]">
|
<DialogContent>
|
||||||
<DialogHeader className="border-b -mx-4 px-4 pb-4">
|
<DialogHeader>
|
||||||
<DialogTitle>Notifications</DialogTitle>
|
<DialogTitle>Notifications</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<NotificationsView />
|
<NotificationsView />
|
||||||
|
<DialogFooter showCloseButton />
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user