20 lines
339 B
CSS
20 lines
339 B
CSS
@layer components {
|
|
.avatar-root {
|
|
background-color: var(--default-bg);
|
|
}
|
|
.avatar-image {
|
|
object-fit: cover;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.avatar-fallback {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: var(--default-bg);
|
|
}
|
|
}
|