Hi,
I noticed a small UI issue in the Frappé theme regarding the hover state of ".title" div.
Problem
On hover, the current styling looks slightly off.
The background of the ".flux-header" is set to var(--hover) but the title alone appears in var(--bg)
Suggested fix
I fixed it locally by adding the following CSS at the end of the file:
.flux:not(.current):hover .item .title {
background: var(--hover);
}
and now it looks like this

Hi,
I noticed a small UI issue in the Frappé theme regarding the hover state of ".title" div.
Problem
On hover, the current styling looks slightly off.
The background of the ".flux-header" is set to var(--hover) but the title alone appears in var(--bg)
Suggested fix
I fixed it locally by adding the following CSS at the end of the file:
.flux:not(.current):hover .item .title {
background: var(--hover);
}
and now it looks like this