mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-13 05:16:37 +00:00
adjust button size
This commit is contained in:
@@ -143,7 +143,7 @@ function ClientResourceSiteLinks({
|
|||||||
<span className="max-w-[10rem] truncate">
|
<span className="max-w-[10rem] truncate">
|
||||||
{site.siteName}
|
{site.siteName}
|
||||||
</span>
|
</span>
|
||||||
<ArrowUpRight className="h-3.5 w-3.5 shrink-0" />
|
<ArrowUpRight className="h-3 w-3 shrink-0" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
))}
|
))}
|
||||||
@@ -198,7 +198,7 @@ function OverflowSitesPopover({
|
|||||||
<span className="truncate">
|
<span className="truncate">
|
||||||
{site.siteName}
|
{site.siteName}
|
||||||
</span>
|
</span>
|
||||||
<ArrowUpRight className="ml-auto h-3.5 w-3.5 shrink-0" />
|
<ArrowUpRight className="ml-auto h-3 w-3 shrink-0" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -352,9 +352,9 @@ export default function PendingSitesTable({
|
|||||||
<Link
|
<Link
|
||||||
href={`/${originalRow.orgId}/settings/remote-exit-nodes/${originalRow.remoteExitNodeId}`}
|
href={`/${originalRow.orgId}/settings/remote-exit-nodes/${originalRow.remoteExitNodeId}`}
|
||||||
>
|
>
|
||||||
<Button variant="outline">
|
<Button variant="outline" size="sm">
|
||||||
{originalRow.exitNodeName}
|
{originalRow.exitNodeName}
|
||||||
<ArrowUpRight className="ml-2 h-4 w-4" />
|
<ArrowUpRight className="ml-2 h-3 w-3" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -144,9 +144,9 @@ export default function ShareLinksTable({
|
|||||||
<Link
|
<Link
|
||||||
href={`/${orgId}/settings/resources/proxy/${r.resourceNiceId}`}
|
href={`/${orgId}/settings/resources/proxy/${r.resourceNiceId}`}
|
||||||
>
|
>
|
||||||
<Button variant="outline">
|
<Button variant="outline" size="sm">
|
||||||
{r.resourceName}
|
{r.resourceName}
|
||||||
<ArrowUpRight className="ml-2 h-4 w-4" />
|
<ArrowUpRight className="ml-2 h-3 w-3" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -362,9 +362,9 @@ export default function SitesTable({
|
|||||||
<Link
|
<Link
|
||||||
href={`/${originalRow.orgId}/settings/remote-exit-nodes/${originalRow.remoteExitNodeId}`}
|
href={`/${originalRow.orgId}/settings/remote-exit-nodes/${originalRow.remoteExitNodeId}`}
|
||||||
>
|
>
|
||||||
<Button variant="outline">
|
<Button variant="outline" size="sm">
|
||||||
{originalRow.exitNodeName}
|
{originalRow.exitNodeName}
|
||||||
<ArrowUpRight className="ml-2 h-4 w-4" />
|
<ArrowUpRight className="ml-2 h-3 w-3" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -373,12 +373,12 @@ export default function UserDevicesTable({
|
|||||||
<Link
|
<Link
|
||||||
href={`/${r.orgId}/settings/access/users/${r.userId}`}
|
href={`/${r.orgId}/settings/access/users/${r.userId}`}
|
||||||
>
|
>
|
||||||
<Button variant="outline">
|
<Button variant="outline" size="sm">
|
||||||
{getUserDisplayName({
|
{getUserDisplayName({
|
||||||
email: r.userEmail,
|
email: r.userEmail,
|
||||||
username: r.username
|
username: r.username
|
||||||
}) || r.userId}
|
}) || r.userId}
|
||||||
<ArrowUpRight className="ml-2 h-4 w-4" />
|
<ArrowUpRight className="ml-2 h-3 w-3" />
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Reference in New Issue
Block a user