Update Applications component layout by adjusting width of URL buttons and refining button labels for clarity.

This commit is contained in:
headlessdev 2025-04-19 16:15:56 +02:00
parent f6debb1629
commit 7986737e0e

View File

@ -479,7 +479,7 @@ export default function Dashboard() {
</CardDescription> </CardDescription>
</div> </div>
</div> </div>
<div className="flex flex-col items-end justify-start space-y-2 w-[270px]"> <div className="flex flex-col items-end justify-start space-y-2 w-[190px]">
<div className="flex items-center gap-2 w-full"> <div className="flex items-center gap-2 w-full">
<div className="flex flex-col space-y-2 flex-grow"> <div className="flex flex-col space-y-2 flex-grow">
<Button <Button
@ -490,7 +490,7 @@ export default function Dashboard() {
} }
> >
<Link className="h-4 w-4" /> <Link className="h-4 w-4" />
Open Public URL Public URL
</Button> </Button>
{app.localURL && ( {app.localURL && (
<Button <Button
@ -501,7 +501,7 @@ export default function Dashboard() {
} }
> >
<Home className="h-4 w-4" /> <Home className="h-4 w-4" />
Open Local URL Local URL
</Button> </Button>
)} )}
</div> </div>