css: Add min-width to user presence dot. (#23526)

Previously user presence dot in the right sidebar becomes narrower 
when there is unread counter, and as such, this commit adds a min-width 
to the user presence dot.

Fixes: #23519
This commit is contained in:
Akarsh Jain 2022-12-07 05:45:55 +05:30 committed by GitHub
parent 158352c339
commit 761ca16d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -420,7 +420,7 @@
.user_circle { .user_circle {
/* Shrink the user activity circle for the recent topics context. */ /* Shrink the user activity circle for the recent topics context. */
width: 7px; min-width: 7px;
height: 7px; height: 7px;
float: left; float: left;
position: unset; position: unset;

View File

@ -77,7 +77,7 @@ $user_status_emoji_width: 24px;
} }
.user_circle { .user_circle {
width: 8px; min-width: 8px;
height: 8px; height: 8px;
margin: 0 5px; margin: 0 5px;
display: block; display: block;