improving the table layout

This commit is contained in:
2026-03-05 22:56:24 -05:00
parent f910d07b48
commit 010a92999a
8 changed files with 90 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
<thead class="sticky top-0 z-10">
<!-- Group row -->
<tr class="bg-gray-800 border-b border-gray-700/50">
<th colspan="4" class="bg-gray-800" />
<th colspan="5" class="bg-gray-800" />
<th colspan="4" class="px-4 py-1.5 text-center text-[10px] font-semibold text-gray-500 uppercase tracking-wider border-l border-gray-700/60">
No Focus
</th>
@@ -68,6 +68,7 @@ import type { SortField, SortState } from '../../types/crafting'
const leftCols = [
{ field: 'variantType' as SortField, label: 'Variant', sortable: true },
{ field: 'displayName' as SortField, label: 'Item', sortable: true },
{ field: 'station' as SortField, label: 'Station', sortable: true },
{ field: 'tier' as SortField, label: 'Tier', sortable: true },
]