From 5131e22c69b5f02eeb18646593c7d47100d0f6d0 Mon Sep 17 00:00:00 2001 From: Archben Date: Thu, 12 Mar 2026 12:56:29 +0000 Subject: [PATCH] Updates --- .../(sections)/ssh-connection.tsx | 35 +++++++++++++++---- src/styles/globals.css | 6 +++- 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/src/components/pages/admin/users/deployment-user/(sections)/ssh-connection.tsx b/src/components/pages/admin/users/deployment-user/(sections)/ssh-connection.tsx index d0458a9..e8ee451 100644 --- a/src/components/pages/admin/users/deployment-user/(sections)/ssh-connection.tsx +++ b/src/components/pages/admin/users/deployment-user/(sections)/ssh-connection.tsx @@ -7,6 +7,8 @@ import RemoteCodeBlock from "@/twui/components/elements/RemoteCodeBlock"; import SingleLineCodeBlock from "@/twui/components/elements/SingleLineCodeBlock"; import TurboCICodeBlock from "@/src/components/general/code-block"; import H3 from "@/twui/components/layout/H3"; +import Button from "@/twui/components/layout/Button"; +import LucideIcon from "@/twui/components/elements/lucide-icon"; export default function SSHConnection() { const { pageProps } = useContext(AppContext); @@ -31,19 +33,38 @@ export default function SSHConnection() { -

Admin Port Forwarding

+ +

Admin Port Forwarding

- - Use these information to connect this user to the - Relay server - + + Use these information to connect this user to + the Relay server + +
- + + + +

Download Private Key

+ + Download the private SSH key for{" "} + {deployment_user.username} + +
+ +
+

diff --git a/src/styles/globals.css b/src/styles/globals.css index c102c53..b30e02b 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -127,7 +127,7 @@ code { #admin-main h3, .admin-h3 { - @apply text-lg font-semibold; + @apply text-base font-semibold; } hr { @@ -137,3 +137,7 @@ hr { .dotted-link { @apply border-b border-dashed border-foreground-light/40 dark:border-foreground-dark/40; } + +.twui-button-primary-outlined * { + @apply font-semibold; +}