Fix command menu input text color (#16661)

## Before
<img width="798" height="164" alt="CleanShot 2025-12-18 at 11 48 15@2x"
src="https://github.com/user-attachments/assets/f67c0d4b-8480-4649-8e46-f8ff6c9bacca"
/>

## After
<img width="400" height="76" alt="image"
src="https://github.com/user-attachments/assets/502a378b-ce89-4992-b5da-3fe6f4413feb"
/>
This commit is contained in:
Raphaël Bosi
2025-12-18 11:57:50 +01:00
committed by GitHub
parent daaa009fb4
commit db960cf509
2 changed files with 0 additions and 8 deletions
@@ -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;
}
`;
@@ -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;
}
`;