[ACS-8160] apply styles for tags in info drawer (#4126)

Co-authored-by: jacekpluta <73617938+jacekpluta@users.noreply.github.com>
This commit is contained in:
tamaragruszka 2024-12-11 13:49:12 +01:00 committed by GitHub
parent 7fcc0af5bd
commit af6deb4388
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,8 @@
.app-metadata-tab {
.adf-dynamic-chip-list-chip {
background-color: var(--theme-background-card-colour);
border: 1px solid var(--theme-text-color);
border-radius: 10px;
color: var(--theme-text-color);
}
}

View File

@ -56,6 +56,7 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
[displayAspect]="metadataAspect" [displayAspect]="metadataAspect"
/> />
`, `,
styleUrls: ['metadata-tab.component.scss'],
encapsulation: ViewEncapsulation.None, encapsulation: ViewEncapsulation.None,
host: { class: 'app-metadata-tab' } host: { class: 'app-metadata-tab' }
}) })