Feature/simplify badge style in admin settings (#5046)

* Simplify badge style
pull/5048/head
Thomas Kaul 11 months ago committed by GitHub
parent a45ad41459
commit 4983b7ca12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -62,7 +62,7 @@
/>
@if (isGhostfolioApiKeyValid === false) {
<span
class="badge badge-light ml-2 new text-uppercase"
class="badge badge-pill badge-secondary ml-2 text-uppercase"
i18n
>new</span
>

@ -9,13 +9,6 @@
}
}
.badge {
&.new {
border: 1px solid var(--mat-table-row-item-outline-color);
padding-bottom: 0.05rem;
}
}
.mat-mdc-card {
--mdc-outlined-card-container-color: whitesmoke;

@ -33,7 +33,7 @@ export class AdminPageComponent implements OnDestroy, OnInit {
iconName: 'settings-outline',
label:
internalRoutes.adminControl.subRoutes.settings.title +
'<span class="badge badge-secondary badge-pill ml-2 text-uppercase">' +
'<span class="badge badge-pill badge-secondary ml-2 text-uppercase">' +
$localize`new` +
'</span>',
routerLink: internalRoutes.adminControl.subRoutes.settings.routerLink

Loading…
Cancel
Save