From 65bbd272e63bc4827c20e92dab02fc3c96dd15cd Mon Sep 17 00:00:00 2001 From: Stephen Saldana Date: Tue, 29 Aug 2023 12:46:02 -0700 Subject: [PATCH] MuiTextField paddingLeft 0.5em --- client/src/theme/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/theme/index.js b/client/src/theme/index.js index 75df741d..095beac8 100644 --- a/client/src/theme/index.js +++ b/client/src/theme/index.js @@ -48,7 +48,7 @@ let theme = createTheme({ MuiTextField: { defaultProps: { inputProps: { - style: { width: '100%', color: uiKitColors.black, border: 'none' }, + style: { width: '100%', color: uiKitColors.black, border: 'none', paddingLeft: '0.5em' }, }, fullWidth: true, },