From 5a2e849c726d392153dc0626d9326d529e4d43b5 Mon Sep 17 00:00:00 2001 From: Alex <33497058+bexsoft@users.noreply.github.com> Date: Thu, 31 Oct 2024 09:36:59 -0600 Subject: [PATCH] Fix Select issues (#1075) --- src/components/Select/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/Select/index.tsx b/src/components/Select/index.tsx index 305781536..f8d94fea2 100644 --- a/src/components/Select/index.tsx +++ b/src/components/Select/index.tsx @@ -129,7 +129,12 @@ const Select: FC = ({ "& .accessoryIcon": { display: "none", }, - ...overrideThemes, + "& input": { + paddingRight: 25, + textOverflow: "ellipsis", + whiteSpace: "nowrap", + overflow: "hidden", + }, }} disabled={disabled} disableErrorUntilFocus={true}