style(ui): format resizable divider

main
Peter Steinberger 2026-02-02 17:01:17 -08:00
parent fe81b1d712
commit 96ad19a627
1 changed files with 6 additions and 4 deletions

View File

@ -24,7 +24,7 @@ export class ResizableDivider extends LitElement {
flex-shrink: 0; flex-shrink: 0;
position: relative; position: relative;
} }
:host::before { :host::before {
content: ""; content: "";
position: absolute; position: absolute;
@ -33,18 +33,20 @@ export class ResizableDivider extends LitElement {
right: -4px; right: -4px;
bottom: 0; bottom: 0;
} }
:host(:hover) { :host(:hover) {
background: var(--accent, #007bff); background: var(--accent, #007bff);
} }
:host(.dragging) { :host(.dragging) {
background: var(--accent, #007bff); background: var(--accent, #007bff);
} }
`; `;
render() { render() {
return html``; return html`
`;
} }
connectedCallback() { connectedCallback() {