@redneckz/wildless-cms-uni-blocks 0.14.536 → 0.14.537
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/bundle/bundle.umd.js +4 -4
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/ProductGallery/ProductGallery.js +3 -3
- package/dist/components/ProductGallery/ProductGallery.js.map +1 -1
- package/lib/common.css +1 -1
- package/lib/components/ProductGallery/ProductGallery.js +3 -3
- package/lib/components/ProductGallery/ProductGallery.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/package.json +1 -1
- package/src/components/ProductGallery/ProductGallery.tsx +7 -3
package/package.json
CHANGED
|
@@ -84,8 +84,8 @@ const renderNavButton =
|
|
|
84
84
|
({ nav }: ProductSlide, i: number) => {
|
|
85
85
|
const isActive = i === activeSlideIndex;
|
|
86
86
|
const btnClassName = isActive
|
|
87
|
-
? 'min-w-[
|
|
88
|
-
: 'min-w-72 ease-in duration-300 bg-white/10 px-xl py-lg hover:backdrop-blur';
|
|
87
|
+
? 'min-w-[370px] mt-s h-28 bg-white shadow-dark-blue border-none p-6'
|
|
88
|
+
: 'min-w-72 mt-lg h-24 ease-in duration-300 bg-white/10 px-xl py-lg hover:backdrop-blur';
|
|
89
89
|
const btnTitleClassName = isActive
|
|
90
90
|
? 'text-primary-text text-h6 py-xs'
|
|
91
91
|
: 'text-l pb-2xs text-secondary-text group-data-secondary:text-white';
|
|
@@ -100,7 +100,11 @@ const renderNavButton =
|
|
|
100
100
|
onClick={() => onClick(i)}
|
|
101
101
|
aria-label={nav?.title}
|
|
102
102
|
className={style(
|
|
103
|
-
'
|
|
103
|
+
'relative overflow-hidden grow',
|
|
104
|
+
'ml-xs px-xl',
|
|
105
|
+
'box-border basis-0 border',
|
|
106
|
+
'border-gray group-data-secondary:border-white/50',
|
|
107
|
+
'text-left whitespace-nowrap',
|
|
104
108
|
btnClassName,
|
|
105
109
|
)}
|
|
106
110
|
>
|