Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.

Commit 454d9a8

Browse files
committed
fix: avatar not showing in collapsed sidebar
The CSS rule .sidebar-footer > div:not(.user-info) was hiding the .sidebar-user-wrapper (which contains the avatar) because it doesn't have the .user-info class. Changed selector to div:not(.sidebar-user-wrapper).
1 parent 37592bb commit 454d9a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ cap-widget {
566566
display: none;
567567
}
568568

569-
.sidebar.collapsed .sidebar-footer > div:not(.user-info) {
569+
.sidebar.collapsed .sidebar-footer > div:not(.sidebar-user-wrapper) {
570570
display: none;
571571
}
572572

0 commit comments

Comments
 (0)