mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 20:38:00 +00:00
74ff154b19
* fix: is default * fix: feature tile in org, iam, neutral color for info boxes * lint * consolidation, ui elements * feat(console): angular 12, migrate deprecated grpc to @grpc/grpc-js (#1741) * update cli core * update material * mig * migrate grpc to grpc-js * audit * lint * node lts version, ng12 deprecation * rem comment * disable inlinestyles * fix iam feature link, binding
46 lines
1.9 KiB
SCSS
46 lines
1.9 KiB
SCSS
@import 'src/app/modules/card/card';
|
|
@import './styles/table';
|
|
@import './styles/input.scss';
|
|
@import './styles/error.scss';
|
|
@import './styles/link.scss';
|
|
@import './styles/sidenav-list';
|
|
@import 'src/app/modules/avatar/avatar.component';
|
|
@import 'src/app/modules/app-radio/app-type-radio/app-type-radio.component';
|
|
@import 'src/app/modules/app-radio/app-auth-method-radio/app-auth-method-radio.component';
|
|
@import 'src/app/modules/changes/changes.component';
|
|
@import 'src/app/modules/info-section/info-section.component';
|
|
@import 'src/app/modules/detail-layout/detail-layout.component';
|
|
@import 'src/app/modules/app-card/app-card.component';
|
|
@import 'src/app/pages/users/user-detail/auth-user-detail/theme-setting/theme-card';
|
|
@import 'src/app/pages/users/user-detail/memberships/memberships.component';
|
|
@import 'src/app/app.component.scss';
|
|
@import 'src/app/modules/form-field/form-field.component.scss';
|
|
@import 'src/app/modules/label/label.component.scss';
|
|
@import 'src/app/modules/meta-layout/meta.scss';
|
|
@import 'src/app/modules/zitadel-tier/zitadel-tier.component.scss';
|
|
@import 'src/app/modules/onboarding/onboarding.component.scss';
|
|
|
|
@mixin component-themes($theme) {
|
|
@include avatar-theme($theme);
|
|
@include app-type-radio-theme($theme);
|
|
@include app-auth-method-radio-theme($theme);
|
|
@include card-theme($theme);
|
|
@include table-theme($theme);
|
|
@include detail-layout-theme($theme);
|
|
@include sidenav-list-theme($theme);
|
|
@include app-card-theme($theme);
|
|
@include membership-theme($theme);
|
|
@include changes-theme($theme);
|
|
@include theme-card($theme);
|
|
@include input-theme($theme);
|
|
@include textvar($theme);
|
|
@include cnsl-form-field-theme($theme);
|
|
@include cnsl-label-theme($theme);
|
|
@include cnsl-error-theme($theme);
|
|
@include link-theme($theme);
|
|
@include meta-theme($theme);
|
|
@include info-section-theme($theme);
|
|
@include onboarding-theme($theme);
|
|
@include tier-theme($theme);
|
|
}
|