This commit is contained in:
Tizian.Breuch
2025-09-08 19:27:46 +02:00
parent ee8974e2ff
commit c65aef11ca
66 changed files with 1691 additions and 108 deletions

View File

@@ -0,0 +1,18 @@
/* 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);
}