UI: Fix submenu arrow indicator position in menus

Commit b11d61c89f added padding-right to
provide some minimal padding for this element. This was seemingly
accounted for in the Yami Base Theme (Yami.obt), but was missed in the
Yami Classic Variant Theme (Yami_Classic.ovt).

Re-add the padding-right to restore the padding.
This commit is contained in:
Ryan Foster 2024-06-13 15:50:10 -04:00
parent b1643c2ac9
commit 021adac2d0

View file

@ -113,6 +113,10 @@ QMenu::item {
padding: var(--padding_menu_y) var(--padding_menu);
}
QMenu::item {
padding-right: 20px;
}
QGroupBox {
background: var(--bg_window);
border: 1px solid var(--border_color);