@codesinger0/shared-components 1.0.28 → 1.0.30
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.
|
@@ -117,8 +117,9 @@ const LargeItemCard = ({
|
|
|
117
117
|
className="hidden lg:block absolute"
|
|
118
118
|
style={{
|
|
119
119
|
zIndex: 10,
|
|
120
|
-
width: '
|
|
121
|
-
maxWidth: '
|
|
120
|
+
width: '30vw',
|
|
121
|
+
maxWidth: '40vw',
|
|
122
|
+
maxHeight: '500px',
|
|
122
123
|
top: '2rem',
|
|
123
124
|
left: reverse ? '4rem' : 'auto',
|
|
124
125
|
right: reverse ? 'auto' : '4rem',
|
|
@@ -137,7 +138,7 @@ const LargeItemCard = ({
|
|
|
137
138
|
<img
|
|
138
139
|
src={imageUrl}
|
|
139
140
|
alt={title}
|
|
140
|
-
className="w-auto h-auto max-h-[
|
|
141
|
+
className="w-auto h-auto max-h-[500px] rounded-lg shadow-2xl border border-primary"
|
|
141
142
|
/>
|
|
142
143
|
</motion.div>
|
|
143
144
|
</div>
|