From 622d7bca796521fc8329cb0de0a0b7ef23e515bc Mon Sep 17 00:00:00 2001 From: M Fahru Date: Wed, 27 Nov 2024 09:50:19 -0700 Subject: [PATCH] Merge pull request #22140 from overleaf/mf-new-checkout-page-toc [web] Add "terms of service" disclaimer text on new checkout page GitOrigin-RevId: 8b5aad7c2ebfc5a9d9acab605276e4b81349e045 --- .../frontend/stylesheets/bootstrap-5/components/all.scss | 1 + .../frontend/stylesheets/bootstrap-5/components/tos.scss | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 services/web/frontend/stylesheets/bootstrap-5/components/tos.scss diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/all.scss b/services/web/frontend/stylesheets/bootstrap-5/components/all.scss index 013dd1d449..99f7cd2a45 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/all.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/all.scss @@ -33,3 +33,4 @@ @import 'close-button'; @import 'recurly'; @import 'dev-toolbar'; +@import 'tos'; diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/tos.scss b/services/web/frontend/stylesheets/bootstrap-5/components/tos.scss new file mode 100644 index 0000000000..789406db82 --- /dev/null +++ b/services/web/frontend/stylesheets/bootstrap-5/components/tos.scss @@ -0,0 +1,6 @@ +.tos-agreement-notice { + @include body-xs; + + text-align: center; + margin: var(--spacing-04) 0 0 0; +}