diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/all.scss b/services/web/frontend/stylesheets/bootstrap-5/components/all.scss index b4e8c8ae0e..013dd1d449 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/all.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/all.scss @@ -31,4 +31,5 @@ @import 'gallery-search'; @import 'error-boundary'; @import 'close-button'; +@import 'recurly'; @import 'dev-toolbar'; diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/recurly.scss b/services/web/frontend/stylesheets/bootstrap-5/components/recurly.scss new file mode 100644 index 0000000000..dd09b844f4 --- /dev/null +++ b/services/web/frontend/stylesheets/bootstrap-5/components/recurly.scss @@ -0,0 +1,9 @@ +.recurly-element-card { + height: 50px; + border: 1px solid var(--neutral-60); + border-radius: var(--border-radius-base); + + &.recurly-element-card-invalid { + border-color: var(--red-50); + } +}