mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-09 17:40:09 +00:00
16 lines
280 B
Vue
16 lines
280 B
Vue
<template>
|
|
<div class="w-auto max-w-full">
|
|
<WorkflowTabs />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import WorkflowTabs from '@/components/topbar/WorkflowTabs.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
:deep(.workflow-tabs) {
|
|
background-color: var(--comfy-menu-bg);
|
|
}
|
|
</style>
|