Fix scaling on chrome

This commit is contained in:
RMidhunSuresh 2023-01-27 13:38:45 +05:30
parent 90ba35da7a
commit d65bbcf168
No known key found for this signature in database
2 changed files with 12 additions and 3 deletions

View File

@ -1278,7 +1278,10 @@ button.RoomDetailsView_row::after {
}
.CallToastNotificationView__call-type::before {
content: url("./icons/video-call.svg?primary=light-text-color");
content: "";
background-image: url("./icons/video-call.svg?primary=light-text-color");
background-repeat: no-repeat;
background-size: 20px 20px;
display: flex;
width: 20px;
height: 20px;
@ -1296,7 +1299,10 @@ button.RoomDetailsView_row::after {
}
.CallToastNotificationView__member-count::before {
content: url("./icons/room-members.svg?primary=light-text-color");
content: "";
background-image: url("./icons/room-members.svg?primary=light-text-color");
background-repeat: no-repeat;
background-size: 20px 20px;
display: flex;
width: 20px;
height: 20px;

View File

@ -465,7 +465,10 @@ only loads when the top comes into view*/
}
.CallTileView_memberCount::before {
content: url('./icons/room-members.svg?primary=text-color');
content: "";
background-image: url('./icons/room-members.svg?primary=text-color');
background-repeat: no-repeat;
background-size: 16px 16px;
width: 16px;
height: 16px;
display: inline-flex;