Merge pull request #35615 from iamejaaz/menu-button-spacing

fix(navbar): add spacing between buttons in desktop screens
This commit is contained in:
Ejaaz Khan 2026-01-02 18:21:19 +05:30 committed by GitHub
commit 2088abd34e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -31,7 +31,7 @@
<div class="standard-actions flex">
<span class="page-icon-group hide hidden-xs hidden-sm"></span>
<div class="menu-btn-group hide">
<button type="button" class="btn btn-default icon-btn ml-0" data-toggle="dropdown" aria-expanded="false" aria-label="{{ __("Menu") }}">
<button type="button" class="btn btn-default icon-btn menu-more-button" data-toggle="dropdown" aria-expanded="false" aria-label="{{ __("Menu") }}">
<span>
<span class="menu-btn-group-label">
<svg class="icon icon-sm">

View file

@ -336,6 +336,13 @@ body {
}
}
}
.page-actions {
.standard-actions {
.menu-btn-group .menu-more-button {
margin-left: 0;
}
}
}
}
}