Fix sidebar tab bg color (#1229)

* Fix node library sidebar style

* Fix styles

* nit
This commit is contained in:
Chenlei Hu
2024-10-11 15:04:29 -04:00
committed by GitHub
parent f328d4cd81
commit c2377b62ac
5 changed files with 34 additions and 52 deletions

View File

@@ -1,5 +1,8 @@
<template>
<div class="comfy-vue-side-bar-container flex flex-col h-full">
<div
class="comfy-vue-side-bar-container flex flex-col h-full"
:class="props.class"
>
<div class="comfy-vue-side-bar-header">
<Toolbar
class="flex-shrink-0 border-x-0 border-t-0 rounded-none px-2 py-1 min-h-10"
@@ -26,10 +29,8 @@
import Toolbar from 'primevue/toolbar'
import ScrollPanel from 'primevue/scrollpanel'
const props = defineProps({
title: {
type: String,
required: true
}
})
const props = defineProps<{
title: string
class?: string
}>()
</script>