fix(ui): improve vertical alignment of icons with text in the overflow menu

Turns out the change in `da8aa014` worsened the positioning of icons in tabs,
like the "Conversation"/"Commits"/"Files changed" tab component.

So limit this change to the `overflow-menu`.
This commit is contained in:
Simon Ochsenreither 2025-03-27 22:22:47 +01:00
parent da8aa01466
commit 9e96b707d6

View file

@ -382,7 +382,6 @@ a.label,
}
.ui.menu .item > .svg {
align-self: baseline;
margin-right: 0.35em;
}
@ -1060,6 +1059,10 @@ overflow-menu .overflow-menu-items .item {
margin-bottom: 0 !important; /* reset fomantic's margin, because the active menu has special bottom border */
}
overflow-menu .overflow-menu-items .item > .svg {
align-self: baseline;
}
overflow-menu .ui.label {
margin-left: 7px !important; /* save some space */
}