Files
ShopSolution-frontend/src/app/shared/components/layout/user-profile/user-profile.component.css
Tizian.Breuch c65aef11ca styles
2025-09-08 19:27:46 +02:00

18 lines
360 B
CSS

/* Verschieben Sie diese Stile aus styles.css hierher */
:host {
display: block;
}
.user-profile img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
cursor: pointer;
border: 2px solid var(--color-border);
transition: border-color var(--transition-speed);
}
.user-profile img:hover {
border-color: var(--color-primary);
}