diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/card.scss b/services/web/frontend/stylesheets/bootstrap-5/components/card.scss index af16932f7c..21e9bd4943 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/card.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/card.scss @@ -149,6 +149,26 @@ padding: var(--spacing-13); } } + + &.card-grey-border { + background-color: white; + border-radius: var(--border-radius-medium); + border: 2px solid var(--neutral-20); + + .card-body { + padding: var(--spacing-10); + } + } + + &.card-green-border { + background-color: white; + border-radius: var(--border-radius-medium); + border: 2px solid var(--green-50); + + .card-body { + padding: var(--spacing-09); + } + } } .card-gray {