Merge pull request #38113 from ShrihariMahabal/fix-sidebar-user-link-padding

fix(ui): add padding and border radius to sidebar user link
This commit is contained in:
Ejaaz Khan 2026-03-19 12:22:06 +05:30 committed by GitHub
commit 43acd39bc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View file

@ -53,8 +53,8 @@
</a>
<div class="nav-item dropdown dropdown-navbar-user dropdown-mobile mt-3">
<a
class="align-center btn-reset flex nav-link"
style="width: 100%; height: 40px;"
class="align-center btn-reset flex nav-link sidebar-user-button"
style="width: 100%; min-height: 40px;"
onclick="return frappe.ui.toolbar.route_to_user()"
aria-label="{{ __("User Menu") }}"
>

View file

@ -196,6 +196,11 @@
&:hover {
@include hover-mixin();
}
.sidebar-user-button {
padding: var(--padding-sm);
border-radius: var(--border-radius-sm);
}
}
}