fix: Move OS tab switcher below Quick Setup header for visibility
All checks were successful
Test Asgard Runner / test (push) Successful in 2s
All checks were successful
Test Asgard Runner / test (push) Successful in 2s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -351,20 +351,6 @@ onMounted(async () => {
|
|||||||
<Terminal class="w-3.5 h-3.5 text-neutral-500" />
|
<Terminal class="w-3.5 h-3.5 text-neutral-500" />
|
||||||
<p class="text-xs font-medium text-neutral-400 uppercase tracking-wider">Quick Setup</p>
|
<p class="text-xs font-medium text-neutral-400 uppercase tracking-wider">Quick Setup</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center gap-2">
|
|
||||||
<!-- OS Tabs -->
|
|
||||||
<div class="flex bg-neutral-800 rounded-md p-0.5">
|
|
||||||
<button
|
|
||||||
@click="setupTab = 'linux'"
|
|
||||||
class="px-3 py-1 text-xs font-medium rounded transition-colors"
|
|
||||||
:class="setupTab === 'linux' ? 'bg-neutral-700 text-neutral-100' : 'text-neutral-500 hover:text-neutral-300'"
|
|
||||||
>Linux</button>
|
|
||||||
<button
|
|
||||||
@click="setupTab = 'windows'"
|
|
||||||
class="px-3 py-1 text-xs font-medium rounded transition-colors"
|
|
||||||
:class="setupTab === 'windows' ? 'bg-neutral-700 text-neutral-100' : 'text-neutral-500 hover:text-neutral-300'"
|
|
||||||
>Windows</button>
|
|
||||||
</div>
|
|
||||||
<button
|
<button
|
||||||
@click="copySetupCommands"
|
@click="copySetupCommands"
|
||||||
class="flex items-center gap-1.5 px-3 py-1 text-xs font-medium rounded-md transition-colors"
|
class="flex items-center gap-1.5 px-3 py-1 text-xs font-medium rounded-md transition-colors"
|
||||||
@@ -375,6 +361,19 @@ onMounted(async () => {
|
|||||||
{{ (setupTab === 'linux' ? copied : windowsCopied) ? 'Copied!' : 'Copy' }}
|
{{ (setupTab === 'linux' ? copied : windowsCopied) ? 'Copied!' : 'Copy' }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- OS Tabs -->
|
||||||
|
<div class="flex bg-neutral-800 rounded-md p-0.5 mb-3 w-fit">
|
||||||
|
<button
|
||||||
|
@click="setupTab = 'linux'"
|
||||||
|
class="px-3 py-1 text-xs font-medium rounded transition-colors"
|
||||||
|
:class="setupTab === 'linux' ? 'bg-neutral-700 text-neutral-100' : 'text-neutral-500 hover:text-neutral-300'"
|
||||||
|
>Linux</button>
|
||||||
|
<button
|
||||||
|
@click="setupTab = 'windows'"
|
||||||
|
class="px-3 py-1 text-xs font-medium rounded transition-colors"
|
||||||
|
:class="setupTab === 'windows' ? 'bg-neutral-700 text-neutral-100' : 'text-neutral-500 hover:text-neutral-300'"
|
||||||
|
>Windows</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Windows Warning Badge -->
|
<!-- Windows Warning Badge -->
|
||||||
|
|||||||
Reference in New Issue
Block a user