From 241b56bb3f9e6f9987dae552e3b368f03ab27624 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Thu, 19 Oct 2023 10:04:01 -0400 Subject: [PATCH] Update border colors to transparent. --- src/ux-components/alert/alert.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ux-components/alert/alert.vue b/src/ux-components/alert/alert.vue index 60a13cd2..ff897218 100644 --- a/src/ux-components/alert/alert.vue +++ b/src/ux-components/alert/alert.vue @@ -176,6 +176,7 @@ export default { } &.alert-info { background-color: $blue-100; + border-color: transparent; .alert-heading { color: $blue-700; } @@ -187,6 +188,7 @@ export default { } &.alert-danger { background-color: $red-100; + border-color: transparent; .alert-heading { color: $red-600; } @@ -198,6 +200,7 @@ export default { } &.alert-warning { background-color: $yellow-100; + border-color: transparent; .alert-heading { color: $yellow-600; } @@ -209,6 +212,7 @@ export default { } &.alert-success { background-color: $green-100; + border-color: transparent; .alert-heading { color: $green-700; }