@codesinger0/shared-components 1.1.91 → 1.1.93
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.
|
@@ -194,7 +194,7 @@ const LargeItemCard = ({
|
|
|
194
194
|
|
|
195
195
|
{/* Desktop image/video positioning */}
|
|
196
196
|
{!absolutePosition && (
|
|
197
|
-
<div className={`hidden lg:block ${reverse ? 'lg:order-1' : 'lg:order-2'}`}>
|
|
197
|
+
<div className={`hidden lg:block px-4 ${reverse ? 'lg:order-1' : 'lg:order-2'}`}>
|
|
198
198
|
<motion.div
|
|
199
199
|
key={'image'}
|
|
200
200
|
initial={{ opacity: 0, x: reverse ? -50 : 50 }}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export { default as RoundButton } from './components/elements/RoundButton';
|
|
2
2
|
export { default as CTAButton } from './components/elements/CTAButton';
|
|
3
3
|
export { default as SmallButton } from './components/elements/SmallButton';
|
|
4
|
+
export { default as VideoLightbox } from './components/elements/VideoLightbox';
|
|
5
|
+
export { default as ImageLightbox } from './components/elements/ImageLightbox';
|
|
4
6
|
export { default as LargeItemCard } from './components/LargeItemCard';
|
|
5
7
|
export { default as DualTextCard } from './components/DualTextCard';
|
|
6
8
|
export { default as SmallItemsGrid } from './components/SmallItemsGrid';
|