diff --git a/src/frontend/src/lib/components/icons/IconLink.svelte b/src/frontend/src/lib/components/icons/IconLink.svelte index 216b1d334c..2f18c50962 100644 --- a/src/frontend/src/lib/components/icons/IconLink.svelte +++ b/src/frontend/src/lib/components/icons/IconLink.svelte @@ -4,7 +4,7 @@ size?: string; } - let { size = '24px' }: Props = $props(); + let { size = '20px' }: Props = $props(); - import Actions from '$lib/components/app/core/Actions.svelte'; - import IconMore from '$lib/components/icons/IconMore.svelte'; - import AttachOrbiter from '$lib/components/modules/attach-detach/AttachOrbiter.svelte'; - import AttachSatellite from '$lib/components/modules/attach-detach/AttachSatellite.svelte'; - - let visible: boolean = $state(false); - const close = () => (visible = false); - - - - {#snippet icon()} - - {/snippet} - - - - - diff --git a/src/frontend/src/lib/components/modules/attach-detach/AttachOrbiter.svelte b/src/frontend/src/lib/components/modules/attach-detach/AttachOrbiter.svelte deleted file mode 100644 index c7b85d46c8..0000000000 --- a/src/frontend/src/lib/components/modules/attach-detach/AttachOrbiter.svelte +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - {#snippet title()} - {$i18n.analytics.attach} - {/snippet} - {#snippet input()} - {$i18n.analytics.attach_id} - {/snippet} - diff --git a/src/frontend/src/lib/components/modules/attach-detach/AttachSatellite.svelte b/src/frontend/src/lib/components/modules/attach-detach/AttachSatellite.svelte deleted file mode 100644 index a04eb28a66..0000000000 --- a/src/frontend/src/lib/components/modules/attach-detach/AttachSatellite.svelte +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - {#snippet title()} - {$i18n.launchpad.attach} - {/snippet} - {#snippet input()} - {$i18n.satellites.id} - {/snippet} - diff --git a/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte b/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte index 140d04f9b9..9cf7cf1cec 100644 --- a/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte +++ b/src/frontend/src/lib/components/modules/attach-detach/AttachSegment.svelte @@ -1,8 +1,9 @@ + +
-

{@render title?.()}

+

{$i18n.launchpad.attach_title}

+ +

{$i18n.launchpad.attach_description}

+ +
+ + {#snippet label()} + {$i18n.cli.module} + {/snippet} + + + +
{#snippet label()} - {@render input?.()} + {$i18n.launchpad.attach_id} {/snippet} @@ -92,4 +105,8 @@ label { margin: var(--padding-1_5x) 0 0; } + + p { + font-size: var(--font-size-small); + } diff --git a/src/frontend/src/lib/components/modules/launchpad/LaunchpadToolbar.svelte b/src/frontend/src/lib/components/modules/launchpad/LaunchpadToolbar.svelte index 8a581ce959..9c3fe491d5 100644 --- a/src/frontend/src/lib/components/modules/launchpad/LaunchpadToolbar.svelte +++ b/src/frontend/src/lib/components/modules/launchpad/LaunchpadToolbar.svelte @@ -1,7 +1,7 @@