feat(827): Added fallback on image if is error

This commit is contained in:
Pontus Dreij
2024-11-14 10:02:36 +01:00
parent f3037a1b3d
commit 38c48006be
2 changed files with 8 additions and 5 deletions
@@ -27,16 +27,17 @@
.imagePlaceholder {
height: 100%;
min-height: 190px;
aspect-ratio: 16/9;
width: 100%;
background-color: #fff;
background-image: linear-gradient(45deg, #000000 25%, transparent 25%),
linear-gradient(-45deg, #000000 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #000000 75%),
linear-gradient(-45deg, transparent 75%, #000000 75%);
background-size: 160px 160px;
background-size: 180px 180px;
background-position:
0 0,
0 80px,
80px -80px,
-80px 0;
0 90px,
90px -90px,
-90px 0;
}