diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx index bd395a612c..399ad04b72 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemNumberInput.tsx @@ -16,10 +16,6 @@ type CommandMenuItemNumberInputProps = { }; const StyledRightAlignedTextInput = styled(TextInput)` input { - :focus { - color: ${({ theme }) => theme.font.color.primary}; - } - color: ${({ theme }) => theme.font.color.tertiary}; text-align: right; } `; diff --git a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx index 1866f22d6e..a2fca0f082 100644 --- a/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/CommandMenuItemTextInput.tsx @@ -11,10 +11,6 @@ type CommandMenuItemTextInputProps = { const StyledRightAlignedTextInput = styled(TextInput)` input { - :focus { - color: ${({ theme }) => theme.font.color.primary}; - } - color: ${({ theme }) => theme.font.color.tertiary}; text-align: right; } `;