parent
9c3d5be2e7
commit
2ce2453d8f
|
@ -5,7 +5,9 @@
|
||||||
{#if description}
|
{#if description}
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
{#if imageUrl}
|
{#if imageUrl}
|
||||||
<LazyImage forceSize={true} height="50" width="50" src={imageUrl} ariaHidden={true} />
|
<div class="status-card-image-container">
|
||||||
|
<LazyImage src={imageUrl} ariaHidden={true} />
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
<span class="card-description">
|
<span class="card-description">
|
||||||
{description}
|
{description}
|
||||||
|
@ -49,6 +51,16 @@
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-card-image-container {
|
||||||
|
position: relative;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.status-card-image-container img) {
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
.card-title {
|
.card-title {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
Loading…
Reference in a new issue