Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/components/dialog/content/CloudMissingNodesContent.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<div class="flex w-[490px] flex-col">
<ContentDivider :width="1" />
<div
class="flex w-[490px] flex-col border-t-1 border-b-1 border-border-default"
>
<div class="flex h-full w-full flex-col gap-4 p-4">
<!-- Description -->
<div>
Expand All @@ -13,12 +14,12 @@

<!-- Missing Nodes List Wrapper -->
<div
class="flex flex-col max-h-[256px] rounded-lg py-2 scrollbar-custom bg-component-node-widget-background"
class="flex flex-col max-h-[256px] rounded-lg py-2 scrollbar-custom bg-secondary-background"
>
<div
v-for="(node, i) in uniqueNodes"
:key="i"
class="flex min-h-8 items-center justify-between px-4 py-2 bg-component-node-widget-background text-text-secondary"
class="flex min-h-8 items-center justify-between px-4 py-2 bg-secondary-background text-muted-foreground"
>
<span class="text-xs">
{{ node.label }}
Expand All @@ -33,14 +34,12 @@
</p>
</div>
</div>
<ContentDivider :width="1" />
</div>
</template>

<script setup lang="ts">
import { computed } from 'vue'

import ContentDivider from '@/components/common/ContentDivider.vue'
import type { MissingNodeType } from '@/types/comfy'

const props = defineProps<{
Expand Down
1 change: 1 addition & 0 deletions src/services/dialogService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const useDialogService = () => {
dialogComponentProps: {
closable: true,
pt: {
root: { class: 'bg-base-background border-border-default' },
header: { class: '!p-0 !m-0' },
content: { class: '!p-0 overflow-y-hidden' },
footer: { class: '!p-0' },
Expand Down
Loading