summit-registration-lite 5.0.11 → 5.0.12
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/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2253,7 +2253,12 @@ const PersonalInfoComponent = ({
|
|
|
2253
2253
|
maxHeight: '120px'
|
|
2254
2254
|
}),
|
|
2255
2255
|
placeholder: provided => personal_information_objectSpread(personal_information_objectSpread({}, provided), {}, {
|
|
2256
|
-
fontSize: '12px'
|
|
2256
|
+
fontSize: '12px',
|
|
2257
|
+
textOverflow: 'ellipsis',
|
|
2258
|
+
whiteSpace: 'nowrap',
|
|
2259
|
+
overflow: 'hidden',
|
|
2260
|
+
width: '95%',
|
|
2261
|
+
paddingRight: '10px'
|
|
2257
2262
|
})
|
|
2258
2263
|
};
|
|
2259
2264
|
return /*#__PURE__*/external_react_default().createElement("div", {
|