Give focused tab a header color

This commit is contained in:
Quinten Kock 2025-12-02 23:27:40 +01:00
parent db5f33e961
commit 019f0a2023
1 changed files with 2 additions and 2 deletions

View File

@ -61,9 +61,9 @@ const EditorWrapper = (
});
return v.div(
{ class: "flex flex-col" },
{ class: "flex flex-col group" },
v.div(
{ class: "flex" },
{ class: "flex group-focus-within:bg-blue-300" },
v.span({ class: "mx-1 flex-1" }, () => editor.val.title()),
u.InlineButton(() => editor.val.close(), "Close", "❌"),
),