[NTP] Do not hide top sites menu when not hovering (#33021)

This commit is contained in:
Kevin Smith
2026-01-05 16:22:23 -05:00
committed by GitHub
parent 9f6dbe0696
commit 5ee62c5bd6
@@ -218,8 +218,10 @@ export const style = scoped.css`
}
}
&:hover .menu-button {
opacity: 1;
visibility: visible;
&:hover, :has(:popover-open) {
.menu-button {
opacity: 1;
visibility: visible;
}
}
`