From 3daf2f6cdd95a5483d75125134632f1a9cc18772 Mon Sep 17 00:00:00 2001 From: Sunny Zanchi Date: Tue, 20 Aug 2024 13:50:13 -0400 Subject: [PATCH] feat: add `children-nowrap` class --- .../src/components/GlobalStyles/GlobalStyles.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/gatsby-theme-newrelic/src/components/GlobalStyles/GlobalStyles.js b/packages/gatsby-theme-newrelic/src/components/GlobalStyles/GlobalStyles.js index 6a07b33ca..433a84d23 100644 --- a/packages/gatsby-theme-newrelic/src/components/GlobalStyles/GlobalStyles.js +++ b/packages/gatsby-theme-newrelic/src/components/GlobalStyles/GlobalStyles.js @@ -229,6 +229,9 @@ const GlobalStyles = ({ layout }) => ( transform: translateX(-100%); padding-right: 4px; } + .children-nowrap * { + white-space: nowrap; + } `} /> );