From e77988f7471d35bc42f0c749dde8140a1cad4e27 Mon Sep 17 00:00:00 2001 From: cpojer Date: Tue, 3 Feb 2026 10:25:32 +0900 Subject: [PATCH] chore: Fix CI. --- ui/src/ui/components/resizable-divider.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ui/src/ui/components/resizable-divider.ts b/ui/src/ui/components/resizable-divider.ts index f38cd7fe8..8134ecc33 100644 --- a/ui/src/ui/components/resizable-divider.ts +++ b/ui/src/ui/components/resizable-divider.ts @@ -24,7 +24,7 @@ export class ResizableDivider extends LitElement { flex-shrink: 0; position: relative; } - + :host::before { content: ""; position: absolute; @@ -33,20 +33,18 @@ export class ResizableDivider extends LitElement { right: -4px; bottom: 0; } - + :host(:hover) { background: var(--accent, #007bff); } - + :host(.dragging) { background: var(--accent, #007bff); } `; render() { - return html` - - `; + return html``; } connectedCallback() {