From e9020555d1cc6367543975272ef980d0b36d0b36 Mon Sep 17 00:00:00 2001 From: Antoine Clausse Date: Fri, 15 Mar 2024 14:02:11 +0100 Subject: [PATCH] [web] Prevent line-breaks within prices (#17574) * Set coupon-name column width to 70% * Add `white-space: nowrap` to prices in price-summary.tsx GitOrigin-RevId: 4b2297810c94c79b08be3fb0c560e280a451c468 --- services/web/frontend/stylesheets/app/subscription.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/web/frontend/stylesheets/app/subscription.less b/services/web/frontend/stylesheets/app/subscription.less index db4fe9a192..cf5694e938 100644 --- a/services/web/frontend/stylesheets/app/subscription.less +++ b/services/web/frontend/stylesheets/app/subscription.less @@ -143,6 +143,10 @@ } } +.price-nowrap { + white-space: nowrap; +} + .price-details-spacing { height: @line-height-computed / 2; }