chore: Fix CI.

main
cpojer 2026-02-03 10:25:32 +09:00
parent 96ad19a627
commit e77988f747
No known key found for this signature in database
GPG Key ID: C29F94A3201118AF
1 changed files with 4 additions and 6 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,20 +33,18 @@ 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() {