fix: tac indicator not hidden when hovered (#33423)

This commit is contained in:
Florian Duros
2026-05-07 19:33:49 +02:00
committed by GitHub
parent cf9cdbbc86
commit afe321d9ea
@@ -86,6 +86,12 @@
/* Arbitrary size, keep the TAC as the wanted width */
width: 202px;
}
/* Hide the notification badge on hover — compound's `nav-hint ~ *` rule would normally
* do this, but the app-web CSS layer overrides compound-web regardless of specificity. */
&:hover .mx_NotificationBadge {
display: none;
}
}
}