@codesinger0/shared-components 1.1.93 → 1.1.94

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.
@@ -77,12 +77,20 @@ const FullscreenCarousel = ({
77
77
  <div key={index} className="fullscreen-carousel__slide">
78
78
  {isSingleSlide ? (
79
79
  /* Single Slide Mode */
80
- <div
81
- className="w-full h-full"
82
- style={{ height: desktopHeight }}
83
- >
84
- {slide.content}
85
- </div>
80
+ <>
81
+ <div
82
+ className="hidden md:block w-full h-full"
83
+ style={{ height: desktopHeight }}
84
+ >
85
+ {slide.content}
86
+ </div>
87
+ <div
88
+ className="block md:hidden w-full h-full"
89
+ style={{ height: mobileHeight }}
90
+ >
91
+ {slide.content}
92
+ </div>
93
+ </>
86
94
  ) : (
87
95
  <>
88
96
  {/* Desktop Layout - Horizontal Split */}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codesinger0/shared-components",
3
- "version": "1.1.93",
3
+ "version": "1.1.94",
4
4
  "description": "Shared React components for customer projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [