mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-20 14:55:00 +00:00

* fix iam member model * fix org member model * fix auth user loading * copytoclipboard directive * directive logs, load bar on init, create user * typo * welcome section, contributor spinner * fix home link * fix stepper flow * show dialog on invalid token * fix app table refresh, pin icons light theme * cleanup contributor * inherit parent color, animations * use localized date pipe everywhere * cmp styles refactor, dont show granted p if none * fix navitem desc, fixed header * change permissions, caching * roles on org emit, use prom instead of hot obs * dont calc 100vh
19 lines
452 B
SCSS
19 lines
452 B
SCSS
|
|
@import '~@angular/material/theming';
|
|
|
|
@mixin avatar-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$primary-color: mat-color($primary, 500);
|
|
|
|
.avatar-circle {
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-transform: uppercase;
|
|
background-color: $primary-color;
|
|
box-sizing: border-box;
|
|
outline: none;
|
|
color: white;
|
|
}
|
|
} |