Merge pull request #5319 from matrix-org/t3chguy/fix/null-avatar

Fix background-image: url(null) for backdrop filter
This commit is contained in:
Michael Telatynski
2020-10-15 17:48:51 +01:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
@supports (backdrop-filter: none) {
.mx_LeftPanel {
background-image: var(--avatar-url);
background-image: var(--avatar-url, unset);
background-repeat: no-repeat;
background-size: cover;
background-position: left top;