Skip to content

Commit

Permalink
(clean) CSS in App.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
dmx974 committed Sep 22, 2024
1 parent 4052fc5 commit 194549a
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<template>
<router-view />
<ProgressSpinner v-if="isLoading" class="spinner"></ProgressSpinner>
<ProgressSpinner
v-if="isLoading"
class="absolute inset-0 flex justify-center items-center h-screen"
/>
<BlockUI full-screen :blocked="isLoading" />
<GlobalDialog />
<GlobalToast />
Expand Down Expand Up @@ -154,15 +157,3 @@ onUnmounted(() => {
executionStore.unbindExecutionEvents()
})
</script>

<style>
.p-tree-node-content {
padding: var(--comfy-tree-explorer-item-padding) !important;
}
</style>

<style scoped>
.spinner {
@apply absolute inset-0 flex justify-center items-center h-screen;
}
</style>

0 comments on commit 194549a

Please sign in to comment.