@campxdev/shared 1.6.3 → 1.6.4
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/src/theme/muiTheme.ts +4 -1
package/package.json
CHANGED
package/src/theme/muiTheme.ts
CHANGED
|
@@ -286,6 +286,7 @@ const muiTheme = createTheme({
|
|
|
286
286
|
MuiFormControl: {
|
|
287
287
|
styleOverrides: {
|
|
288
288
|
root: {
|
|
289
|
+
position: 'relative',
|
|
289
290
|
'&.MuiTextField-root > .MuiInputBase-root': {
|
|
290
291
|
padding: 0,
|
|
291
292
|
},
|
|
@@ -308,10 +309,12 @@ const muiTheme = createTheme({
|
|
|
308
309
|
},
|
|
309
310
|
'& .MuiFormHelperText-root': {
|
|
310
311
|
fontStyle: 'oblique',
|
|
311
|
-
|
|
312
|
+
position: 'absolute',
|
|
312
313
|
fontSize: '13px',
|
|
313
314
|
fontWeight: 600,
|
|
314
315
|
textAlign: 'right',
|
|
316
|
+
right: 0,
|
|
317
|
+
bottom: -32,
|
|
315
318
|
},
|
|
316
319
|
},
|
|
317
320
|
},
|