@windstream/react-shared-components 0.1.72 → 0.1.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +5 -5
- package/dist/index.d.ts +4 -4
- package/dist/styles.css +1 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/callout/index.tsx +1 -1
- package/src/hooks/contentful/use-contentful-rich-text.tsx +1 -1
package/package.json
CHANGED
|
@@ -192,7 +192,7 @@ export const Callout: React.FC<CalloutProps> = ({
|
|
|
192
192
|
>
|
|
193
193
|
<div
|
|
194
194
|
className={cx(
|
|
195
|
-
noGutter ? "p-0" : "mx-5
|
|
195
|
+
noGutter ? "p-0" : "mx-5 my-12 md:my-20",
|
|
196
196
|
maxWidth && "max-w-120 xl:mx-auto",
|
|
197
197
|
color === "dark" ? "text-text" : "text-white",
|
|
198
198
|
innerClassName
|
|
@@ -262,7 +262,7 @@ export function renderContentfulRichTextTable(
|
|
|
262
262
|
|
|
263
263
|
return (
|
|
264
264
|
<td
|
|
265
|
-
className={`rt-table-cell footnote break-words bg-white py-2 text-center align-top leading-5 text-text md:body2 first:text-left md:leading-7 ${
|
|
265
|
+
className={`rt-table-cell footnote break-words bg-white py-2 md:py-4 text-center align-top leading-5 text-text md:body2 first:text-left md:leading-7 ${
|
|
266
266
|
isScrollable
|
|
267
267
|
? "w-[50vw] min-w-[50vw] first:sticky first:left-0 first:z-10 first:w-[50vw] first:min-w-[50vw] first:border-r"
|
|
268
268
|
: "w-1/4 first:w-1/2"
|