From 469908dc684bd425a46dd9ecf31b807574c2d9e2 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 75df741df..095beac8a 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, },