user_circles: Use background color instead of transparency.

This sets us up to layer the status bubbles over avatars.
This commit is contained in:
evykassirer 2024-10-24 14:30:13 -07:00 committed by Tim Abbott
parent 77064a1726
commit c39ae45d95
1 changed files with 2 additions and 2 deletions

View File

@ -15,13 +15,13 @@
border-color: var(--color-user-circle-idle);
background: linear-gradient(
to bottom,
hsl(0deg 0% 100% / 0%) 50%,
var(--color-background) 50%,
var(--color-user-circle-idle) 50%
);
}
.user_circle_empty {
background-color: transparent;
background-color: var(--color-background);
border-color: hsl(0deg 0% 50%);
}