From 15958b215d89c6d4e4e6b99ff4f46f74695d6dac Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Mon, 18 Mar 2024 11:03:59 +0100 Subject: [PATCH] chore: fix maxWidth form --- src/components/Connection/SGEConnect/SgeConnect.scss | 4 ++++ src/components/theme.ts | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/Connection/SGEConnect/SgeConnect.scss b/src/components/Connection/SGEConnect/SgeConnect.scss index 9dcec1948..14268822e 100644 --- a/src/components/Connection/SGEConnect/SgeConnect.scss +++ b/src/components/Connection/SGEConnect/SgeConnect.scss @@ -120,3 +120,7 @@ } } } + +.MuiInputBase-root { + max-width: 300px; +} diff --git a/src/components/theme.ts b/src/components/theme.ts index fbb41efe9..0230c425e 100644 --- a/src/components/theme.ts +++ b/src/components/theme.ts @@ -31,10 +31,5 @@ export const theme = createTheme({ backgroundColor: '#e3b82a', }, }, - MuiInputBase: { - root: { - maxWidth: 300, - }, - }, }, }) -- GitLab