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
12 lines
313 B
SCSS
12 lines
313 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
@mixin theme-card($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$primary-dark: mat-color($primary, A800);
|
|
|
|
.theme-conent, .crescent {
|
|
background-color: $primary-dark;
|
|
transition: background-color .4s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
}
|
|
}
|