@matbea-ui/matbea-ui 0.2.0-dev.562872 → 0.2.0-dev.575027
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/dist/matbea-ui.cjs.js
CHANGED
|
@@ -24452,8 +24452,8 @@ const theme = {
|
|
|
24452
24452
|
colors,
|
|
24453
24453
|
media: {
|
|
24454
24454
|
maxWidth: {
|
|
24455
|
-
mobile: "@media (max-width:
|
|
24456
|
-
tablet: "@media (max-width:
|
|
24455
|
+
mobile: "@media (max-width: 576px)",
|
|
24456
|
+
tablet: "@media (max-width: 1023px)",
|
|
24457
24457
|
},
|
|
24458
24458
|
},
|
|
24459
24459
|
};
|
|
@@ -24531,10 +24531,10 @@ const createAdaptiveScalePlugin = (customConfig) => {
|
|
|
24531
24531
|
}
|
|
24532
24532
|
return `calc(var(${config.scaleVariable}, 1) * ${pxValue}px)`;
|
|
24533
24533
|
});
|
|
24534
|
-
element.value = element.value.replace(/([-0-9.]+)vh/g, (_, value) => {
|
|
24535
|
-
|
|
24536
|
-
|
|
24537
|
-
});
|
|
24534
|
+
// element.value = element.value.replace(/([-0-9.]+)vh/g, (_, value) => {
|
|
24535
|
+
// const vhValue = parseFloat(value);
|
|
24536
|
+
// return `calc(var(${config.vhVariable}, 1vh) * ${vhValue})`;
|
|
24537
|
+
// });
|
|
24538
24538
|
};
|
|
24539
24539
|
};
|
|
24540
24540
|
|