mirror of https://github.com/zulip/zulip.git
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:
parent
158352c339
commit
761ca16d6d
|
@ -420,7 +420,7 @@
|
|||
|
||||
.user_circle {
|
||||
/* Shrink the user activity circle for the recent topics context. */
|
||||
width: 7px;
|
||||
min-width: 7px;
|
||||
height: 7px;
|
||||
float: left;
|
||||
position: unset;
|
||||
|
|
|
@ -77,7 +77,7 @@ $user_status_emoji_width: 24px;
|
|||
}
|
||||
|
||||
.user_circle {
|
||||
width: 8px;
|
||||
min-width: 8px;
|
||||
height: 8px;
|
||||
margin: 0 5px;
|
||||
display: block;
|
||||
|
|
Loading…
Reference in New Issue