style/global menu button: fix the focus indicator

This commit is contained in:
Adorian Doran 2025-09-20 22:46:56 +03:00
parent d0d166e426
commit 6745b887fb

View File

@ -16,12 +16,13 @@ button.global-menu-button {
padding: 6px;
}
.global-menu-button svg {
.global-menu-button svg > g {
transform-origin: center;
transition: transform 300ms ease-in-out;
}
.global-menu-button:active svg,
.global-menu-button.show svg {
.global-menu-button:active svg > g,
.global-menu-button.show svg > g{
transform: scale(0.85) rotate(-10deg);
}