Model: Qwen 3.6 35B A3
Some checks failed
tests / ci (8.5) (push) Failing after 2m31s
linter / quality (push) Failing after 2m55s
tests / ci (8.3) (push) Failing after 3m25s
tests / ci (8.4) (push) Failing after 3m49s

Prompt: simplify and fix dashboard layout. Sidebars are now a mess, weird gaps everywhere, make it simple and modern keeping general color scheme

Stats:
Context: 41,492 tokens
Time: 6m 15s
This commit is contained in:
Darius Rapalis
2026-04-28 23:16:20 +03:00
parent 27b2f5c543
commit 36f924a16a
6 changed files with 49 additions and 235 deletions

View File

@@ -15,10 +15,10 @@ withDefaults(
<template>
<header
class="flex h-16 shrink-0 items-center gap-2 border-b border-sidebar-border/70 px-6 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-12 md:px-4"
class="flex h-[60px] shrink-0 items-center gap-2 border-b border-[#e4eaee] px-4 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-[56px] dark:border-[#37474f]"
>
<div class="flex items-center gap-2">
<SidebarTrigger class="-ml-1" />
<div class="flex items-center gap-2 w-full">
<SidebarTrigger class="-ml-1 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200" />
<template v-if="breadcrumbs && breadcrumbs.length > 0">
<Breadcrumbs :breadcrumbs="breadcrumbs" />
</template>