From 799dcf618b1767766a122587b2b15239934ed5bd Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 10:31:52 +0200 Subject: [PATCH] [web] Add `text-align: left` to `.notification-content` (#33142) GitOrigin-RevId: 6470f6453f3c31e335863a67d3738972c84fc515 --- .../web/frontend/stylesheets/components/notifications.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/web/frontend/stylesheets/components/notifications.scss b/services/web/frontend/stylesheets/components/notifications.scss index c0fc21ae6d..f317ff4475 100644 --- a/services/web/frontend/stylesheets/components/notifications.scss +++ b/services/web/frontend/stylesheets/components/notifications.scss @@ -161,9 +161,14 @@ .notification-content { flex-grow: 1; padding: $spacing-06 0; + text-align: left; width: 100%; } + &.text-center .notification-content { + text-align: center; + } + .notification-cta { padding-bottom: $spacing-06;