From 6cee0cd9c97094382b90698456bd4664699d5386 Mon Sep 17 00:00:00 2001 From: malavikakoppula <83021791+malavikakoppula@users.noreply.github.com> Date: Fri, 29 Mar 2024 12:02:11 -0400 Subject: [PATCH] Added overflow to section-title links (#2027) * Added flex to section-title links --------- Co-authored-by: Malavika Koppula --- .storybook/themes/news.scss | 4 ++++ blocks/section-title-block/themes/news.json | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/.storybook/themes/news.scss b/.storybook/themes/news.scss index 3ed03266ae..0036f70055 100644 --- a/.storybook/themes/news.scss +++ b/.storybook/themes/news.scss @@ -2618,6 +2618,10 @@ ), ), ), + "section-title-links": ( + "display": flex, + "flex-wrap": wrap + ), "share-bar": ( "background": var(--background-color), "box-shadow": var(--global-box-shadow-1), diff --git a/blocks/section-title-block/themes/news.json b/blocks/section-title-block/themes/news.json index c812fc6286..9dbfb0de6d 100644 --- a/blocks/section-title-block/themes/news.json +++ b/blocks/section-title-block/themes/news.json @@ -23,5 +23,15 @@ }, "desktop": {} } + }, + + "section-title-links": { + "styles": { + "default": { + "display": "flex", + "flex-wrap": "wrap" + }, + "desktop": {} + } } }