style: apply Tailwind CSS class sorting across codebase

Co-authored-by: Amp <amp@ampcode.com>
Amp-Thread-ID: https://ampcode.com/threads/T-019bd8c8-bce1-70bc-a125-baf2a1503ee8
This commit is contained in:
Alexander Brown
2026-01-19 16:19:18 -08:00
parent 0bbb2d73e1
commit e7ce294aeb
168 changed files with 1777 additions and 1103 deletions

View File

@@ -46,9 +46,9 @@
:is-active="item.key === activeItemKey"
/>
</template>
<template #separator
><span style="transform: scale(1.5)"> / </span></template
>
<template #separator>
<span style="transform: scale(1.5)"> / </span>
</template>
</Breadcrumb>
</div>
</template>
@@ -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;

View File

@@ -21,8 +21,15 @@
class="icon-[lucide--triangle-alert] text-warning-background"
/>
<span class="p-breadcrumb-item-label px-2">{{ item.label }}</span>
<Tag v-if="item.isBlueprint" value="Blueprint" severity="primary" />
<i v-if="isActive" class="pi pi-angle-down text-[10px]"></i>
<Tag
v-if="item.isBlueprint"
value="Blueprint"
severity="primary"
/>
<i
v-if="isActive"
class="pi pi-angle-down text-[10px]"
/>
</a>
<Menu
v-if="isActive || isRoot"
@@ -208,7 +215,7 @@ defineExpose({
}
.p-breadcrumb-item-label {
@apply whitespace-nowrap text-ellipsis overflow-hidden;
@apply overflow-hidden text-ellipsis whitespace-nowrap;
}
.active-breadcrumb-item {