-
+
cn(
'w-[200px] border-dashed border-blue-500 opacity-80',
'm-1.5 flex items-center justify-center self-stretch',
- 'rounded-md before:w-50 before:-ml-50 before:h-full',
+ 'rounded-md before:-ml-50 before:h-full before:w-50',
'pointer-events-auto',
isMouseOverDropZone.value &&
- 'border-[3px] opacity-100 scale-105 shadow-[0_0_20px] shadow-blue-500'
+ 'scale-105 border-[3px] opacity-100 shadow-[0_0_20px] shadow-blue-500'
)
)
const panelClass = computed(() =>
cn(
'actionbar pointer-events-auto z-1300',
- isDragging.value && 'select-none pointer-events-none',
+ isDragging.value && 'pointer-events-none select-none',
isDocked.value
- ? 'p-0 static border-none bg-transparent'
+ ? 'static border-none bg-transparent p-0'
: 'fixed shadow-interface'
)
)
diff --git a/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue b/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue
index 655df0b65..809d547e4 100644
--- a/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue
+++ b/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue
@@ -4,7 +4,10 @@
class="relative h-full w-full overflow-hidden bg-neutral-900"
>
@@ -233,7 +233,7 @@ onUpdated(() => {
}
:deep(.p-breadcrumb-item) {
- @apply flex items-center overflow-hidden h-8;
+ @apply flex h-8 items-center overflow-hidden;
min-width: calc(var(--p-breadcrumb-item-min-width) + 1rem);
border: 1px solid transparent;
background-color: transparent;
diff --git a/src/components/breadcrumb/SubgraphBreadcrumbItem.vue b/src/components/breadcrumb/SubgraphBreadcrumbItem.vue
index 0edcc25f9..499ee7cd4 100644
--- a/src/components/breadcrumb/SubgraphBreadcrumbItem.vue
+++ b/src/components/breadcrumb/SubgraphBreadcrumbItem.vue
@@ -21,8 +21,15 @@
class="icon-[lucide--triangle-alert] text-warning-background"
/>
{{ item.label }}
-
-
+
+
diff --git a/src/components/card/CardBottom.vue b/src/components/card/CardBottom.vue
index 4a0ae1047..502d08bce 100644
--- a/src/components/card/CardBottom.vue
+++ b/src/components/card/CardBottom.vue
@@ -1,6 +1,6 @@
-
+
@@ -14,6 +14,6 @@ const { fullHeight = true } = defineProps<{
}>()
const containerClasses = computed(() =>
- cn('flex-1 w-full', fullHeight && 'h-full')
+ cn('w-full flex-1', fullHeight && 'h-full')
)
diff --git a/src/components/card/CardContainer.vue b/src/components/card/CardContainer.vue
index 8b8f81944..0b9e8fa5c 100644
--- a/src/components/card/CardContainer.vue
+++ b/src/components/card/CardContainer.vue
@@ -1,7 +1,7 @@
-
-
+
+
@@ -59,7 +59,7 @@ const containerClasses = computed(() => {
outline: cn(
hasBorder && 'border-2 border-border-subtle',
hasCursor && 'cursor-pointer',
- 'hover:border-border-subtle/50 transition-colors'
+ 'transition-colors hover:border-border-subtle/50'
)
}
diff --git a/src/components/chip/SquareChip.vue b/src/components/chip/SquareChip.vue
index b31e283db..0f19eb3fb 100644
--- a/src/components/chip/SquareChip.vue
+++ b/src/components/chip/SquareChip.vue
@@ -1,6 +1,6 @@
-
+
{{ label }}
@@ -19,9 +19,9 @@ const baseClasses =
const variantStyles = {
dark: 'bg-zinc-500/40 text-white/90',
- light: cn('backdrop-blur-[2px] bg-base-background/50 text-base-foreground'),
+ light: cn('bg-base-background/50 text-base-foreground backdrop-blur-[2px]'),
gray: cn(
- 'backdrop-blur-[2px] bg-modal-card-tag-background text-base-foreground'
+ 'bg-modal-card-tag-background text-base-foreground backdrop-blur-[2px]'
)
}
diff --git a/src/components/common/OverlayIcon.vue b/src/components/common/OverlayIcon.vue
index bc68918f0..268c51cfd 100644
--- a/src/components/common/OverlayIcon.vue
+++ b/src/components/common/OverlayIcon.vue
@@ -1,11 +1,14 @@
-
-
+
+
-
+