mirror of https://github.com/zulip/zulip.git
Fix avatar sizing issue.
The avatars were previously their natural width, however the avatars should always be 100% width since the height and width of the images are known to always be equal.
This commit is contained in:
parent
736701f900
commit
55b1d480ec
|
@ -484,6 +484,8 @@ html {
|
||||||
height: 100px;
|
height: 100px;
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
|
box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
|
||||||
|
|
||||||
|
background-size: 100% auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-view .org-header .info-box {
|
.split-view .org-header .info-box {
|
||||||
|
|
Loading…
Reference in New Issue