diff --git a/styles/css/vtex.rich-text.css b/styles/css/vtex.rich-text.css index 30c47f9..c4b72e4 100644 --- a/styles/css/vtex.rich-text.css +++ b/styles/css/vtex.rich-text.css @@ -44,6 +44,12 @@ line-height: 20px; text-align: center; color: rgba(255, 255, 255, 0.45); + white-space: nowrap; +} +@media (max-width: 768px) and (min-width: 375px) { + .container .wrapper .paragraph { + white-space: unset; + } } .container .wrapper .paragraph--footer { font-weight: 700; diff --git a/styles/sass/pages/product/vtexRichText/vtex.rich-text.scss b/styles/sass/pages/product/vtexRichText/vtex.rich-text.scss index 9fa5917..6323ce6 100644 --- a/styles/sass/pages/product/vtexRichText/vtex.rich-text.scss +++ b/styles/sass/pages/product/vtexRichText/vtex.rich-text.scss @@ -37,6 +37,10 @@ line-height: 20px; text-align: center; color: rgba(255, 255, 255, 0.45); + white-space: nowrap; + @media (max-width: 768px) and (min-width: 375px) { + white-space: unset; + } } .paragraph--footer { font-weight: 700;