Fix submenu arrow: flexbox centering, proper spacing

- Use display: flex + align-items: center on dropdown-toggle
- gap: 0.75rem between text and arrow
- Remove float: right and margin-top hack
- chevron-right: flex-shrink: 0, font-size: 0.7rem
This commit is contained in:
2026-08-11 16:57:50 +02:00
parent 1a748cbc77
commit 342112cd21
7 changed files with 31 additions and 699 deletions
+11 -4
View File
@@ -369,10 +369,17 @@ $header-bg-opacity: 1;
background-color: rgba(255, 255, 255, 0.15) !important;
}
// Arrow pointing right
> .dropdown-toggle .bi-chevron-right {
float: right;
margin-top: 0.25rem;
// Arrow pointing right — vertically centered with text
> .dropdown-toggle {
display: flex !important;
justify-content: space-between;
align-items: center;
gap: 0.75rem;
.bi-chevron-right {
flex-shrink: 0;
font-size: 0.7rem;
}
}
}