|
|
@@ -233,9 +233,7 @@ function toggleCategory(categoryId: string) {
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div
|
|
|
- class="h-[600px] flex-1 overflow-y-auto rounded-lg bg-white p-6 shadow-md"
|
|
|
- >
|
|
|
+ <div class="h-[600px] flex-1 rounded-lg bg-white p-6 shadow-md">
|
|
|
<div v-if="selectedTool" class="space-y-6">
|
|
|
<div class="flex items-center justify-between">
|
|
|
<div class="text-xl font-bold text-[#462424]">
|
|
|
@@ -245,11 +243,24 @@ function toggleCategory(categoryId: string) {
|
|
|
class="h-[40px] rounded-[8px] bg-[#462424] px-8 text-white"
|
|
|
@click="handleDownload(selectedTool.downloadUrl)"
|
|
|
>
|
|
|
+ <svg
|
|
|
+ class="mr-2 h-4 w-4"
|
|
|
+ fill="none"
|
|
|
+ stroke="currentColor"
|
|
|
+ viewBox="0 0 24 24"
|
|
|
+ >
|
|
|
+ <path
|
|
|
+ d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"
|
|
|
+ stroke-linecap="round"
|
|
|
+ stroke-linejoin="round"
|
|
|
+ stroke-width="2"
|
|
|
+ />
|
|
|
+ </svg>
|
|
|
{{ $t('toolDownloads.download') }}
|
|
|
</Button>
|
|
|
</div>
|
|
|
<div
|
|
|
- class="leading-relaxed text-gray-600"
|
|
|
+ class="h-[500px] overflow-y-auto leading-relaxed text-gray-600"
|
|
|
v-html="selectedTool.body"
|
|
|
></div>
|
|
|
</div>
|