1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

[bug] CL - fix default button display and callout header class (#756)

This commit is contained in:
Vincent Salucci
2022-04-05 12:19:13 -05:00
committed by GitHub
parent f3a4fde513
commit 5f4a8c18fe
4 changed files with 39 additions and 15 deletions

View File

@@ -51,13 +51,13 @@ export class CalloutComponent implements OnInit {
get headerClass() {
switch (this.type) {
case "danger":
return "tw-text-danger";
return "!tw-text-danger";
case "info":
return "tw-text-info";
return "!tw-text-info";
case "success":
return "tw-text-success";
return "!tw-text-success";
case "warning":
return "tw-text-warning";
return "!tw-text-warning";
}
}
}