diff options
| author | Adam Malczewski <[email protected]> | 2026-06-02 15:53:23 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-02 15:53:23 +0900 |
| commit | 8deb9d17fd5ffc973e85f09ff596770c68ee999a (patch) | |
| tree | da1450be000bfccf5079636d1be9e55f39e56291 | |
| parent | 2f1cf4ad1c7996810c4a68af38aee3b1f64f8cd8 (diff) | |
| download | dispatch-8deb9d17fd5ffc973e85f09ff596770c68ee999a.tar.gz dispatch-8deb9d17fd5ffc973e85f09ff596770c68ee999a.zip | |
fix(tabbar): flatten top-left corner of sticky + button
daisyUI tabs-lift rounds both top corners; the pinned + button sits at
the bar's left edge, so its top-left (start-start) radius reads as a
stray rounded corner. Override with !rounded-ss-none.
| -rw-r--r-- | packages/frontend/src/lib/components/TabBar.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/lib/components/TabBar.svelte b/packages/frontend/src/lib/components/TabBar.svelte index 9d33d5e..700bc9d 100644 --- a/packages/frontend/src/lib/components/TabBar.svelte +++ b/packages/frontend/src/lib/components/TabBar.svelte @@ -93,7 +93,7 @@ function handleRenameKeydown(e: KeyboardEvent): void { at any horizontal scroll; opaque bg + right-side shadow as a floating cue. --> <button type="button" - class="tab !sticky left-0 z-10 bg-base-200 shadow-[2px_0_4px_-1px_rgba(0,0,0,0.2)]" + class="tab !sticky left-0 z-10 bg-base-200 !rounded-ss-none shadow-[2px_0_4px_-1px_rgba(0,0,0,0.2)]" onclick={() => tabStore.createNewTab()} aria-label="New tab" > |
