pds-dev-kit-web-test 2.5.7 → 2.5.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.
@@ -219,7 +219,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
219
219
|
return size.width * 0.0421;
|
220
220
|
}
|
221
221
|
if (size.width < 327) {
|
222
|
-
return Math.
|
222
|
+
return Math.max(getDefensiveFontSize(device, size.width), 14);
|
223
223
|
}
|
224
224
|
return 16;
|
225
225
|
}
|
@@ -227,7 +227,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
227
227
|
return size.width * 0.0133;
|
228
228
|
}
|
229
229
|
if (size.width < 1200) {
|
230
|
-
return Math.
|
230
|
+
return Math.max(getDefensiveFontSize(device, size.width), 14);
|
231
231
|
}
|
232
232
|
return 16;
|
233
233
|
})();
|