diy-template-components 0.0.65 → 0.0.66
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/build/index.es.js +4 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +4 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -156,7 +156,8 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
156
156
|
fontWeight: '500',
|
|
157
157
|
fontSize: '16px',
|
|
158
158
|
lineHeight: '24px',
|
|
159
|
-
color: '#3C4852'
|
|
159
|
+
color: '#3C4852',
|
|
160
|
+
marginLeft: "8px"
|
|
160
161
|
},
|
|
161
162
|
mobileContent: {
|
|
162
163
|
display: 'flex',
|
|
@@ -244,7 +245,8 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
244
245
|
'-webkit-box-orient': 'vertical',
|
|
245
246
|
overflow: 'hidden',
|
|
246
247
|
textOverflow: 'ellipsis',
|
|
247
|
-
overflowWrap: 'anywhere'
|
|
248
|
+
overflowWrap: 'anywhere',
|
|
249
|
+
marginLeft: "0px"
|
|
248
250
|
}
|
|
249
251
|
}));
|
|
250
252
|
|