From 2da03f115fe42702fa2fc17aab216c40ea14e7e8 Mon Sep 17 00:00:00 2001 From: Jessica Lawshe <5312836+lawshe@users.noreply.github.com> Date: Fri, 17 Apr 2026 08:43:31 -0500 Subject: [PATCH] Merge pull request #32704 from overleaf/jel-domain-verify-copy-token [web] Add component to render and copy domain verification token GitOrigin-RevId: 36fcc8ef63208b6eb83a2e0f4360eb74a3a0af56 --- .../web/frontend/stylesheets/pages/group-settings.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/services/web/frontend/stylesheets/pages/group-settings.scss b/services/web/frontend/stylesheets/pages/group-settings.scss index fc2bda1799..85dcbea11d 100644 --- a/services/web/frontend/stylesheets/pages/group-settings.scss +++ b/services/web/frontend/stylesheets/pages/group-settings.scss @@ -348,3 +348,12 @@ h4.group-settings-title { margin-bottom: var(--spacing-05); } } + +.domain-verification-token-container { + background-color: var(--bg-light-secondary); + padding: var(--spacing-05); + border-radius: var(--border-radius-base); + border: 1px solid var(--border-disabled); + display: flex; + justify-content: space-between; +}