/*
1 colore bottone
2 bordo/hover
3 testo
*/
.avatar {
  aspect-ratio: 1/1;
  width: 36px;
  height: 100%;
  border-radius: calc(infinity * 1px);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar__default svg {
  width: 100%;
  fill: var(--fg-light);
}
.avatar__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  font-weight: bold;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  background-color: cornflowerblue;
  color: white;
}
.avatar__initials--blue {
  background-color: cornflowerblue;
}
.avatar__initials--green {
  background-color: darkolivegreen;
}
.avatar__initials--red {
  background-color: firebrick;
}
.avatar__initials--pink {
  background-color: burlywood;
}
.avatar__picture img {
  object-fit: cover;
}

/*# sourceMappingURL=avatar.css.map */
