21 lines
465 B
CSS
21 lines
465 B
CSS
.farbschlag-thumb {
|
|
object-fit: cover;
|
|
border-radius: 0.4rem;
|
|
border: 1px solid var(--color-border);
|
|
background: var(--color-surface);
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* With a leading thumbnail, let the name grow so the probability stays right. */
|
|
.farbschlag-card .farbschlag-card__name {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Inline image + name (e.g. on the animal detail Stammdaten row). */
|
|
.farbschlag-value {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|