funuicss 3.9.7 → 3.9.8
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/package.json +1 -1
- package/ui/vista/Vista.js +2 -4
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.9.
|
|
2
|
+
"version": "3.9.8",
|
|
3
3
|
"name": "funuicss",
|
|
4
4
|
"description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
|
|
5
5
|
"main": "index.js",
|
package/ui/vista/Vista.js
CHANGED
|
@@ -152,14 +152,12 @@ var Vista = function (localProps) {
|
|
|
152
152
|
var mediaSize = getMediaSize();
|
|
153
153
|
var mediaWrapperStyle = {
|
|
154
154
|
position: 'relative',
|
|
155
|
-
width: '100%',
|
|
156
|
-
maxWidth: mediaSize || '100%',
|
|
155
|
+
width: mediaSize || '100%',
|
|
157
156
|
margin: '0 auto',
|
|
158
157
|
};
|
|
159
158
|
var mediaStyle = {
|
|
160
159
|
objectFit: 'cover',
|
|
161
|
-
|
|
162
|
-
width: '100%',
|
|
160
|
+
width: mediaSize || '100%',
|
|
163
161
|
borderRadius: 'inherit',
|
|
164
162
|
filter: getFilterStyle(final.mediaFilter, final.mediaFilterValue),
|
|
165
163
|
};
|