fix(nc-gui): some review changes

This commit is contained in:
Ramesh Mane
2025-06-25 15:47:32 +00:00
parent f7cf514eb3
commit 4ee14c6e8a
12 changed files with 90 additions and 128 deletions

View File

@@ -19,24 +19,22 @@ const supportedDocs = [
</script>
<template>
<div>
<div class="w-full flex flex-col gap-3">
<div class="text-sm text-gray-800 font-semibold">Relevant documentation</div>
<div class="w-full flex flex-col gap-3">
<div class="text-sm text-gray-800 font-semibold">Relevant documentation</div>
<div>
<div v-for="(doc, idx) of supportedDocs" :key="idx" class="flex items-center gap-1">
<div class="h-7 w-7 flex items-center justify-center">
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-600" />
</div>
<a
:href="doc.href"
target="_blank"
rel="noopener noreferrer"
class="!text-gray-700 text-sm !no-underline !hover:underline"
>
{{ doc.title }}
</a>
<div>
<div v-for="(doc, idx) of supportedDocs" :key="idx" class="flex items-center gap-1">
<div class="h-7 w-7 flex items-center justify-center">
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-600" />
</div>
<a
:href="doc.href"
target="_blank"
rel="noopener noreferrer"
class="!text-gray-700 text-sm !no-underline !hover:underline"
>
{{ doc.title }}
</a>
</div>
</div>
</div>