diff --git a/packages/app/src/components/quick-search/style.ts b/packages/app/src/components/quick-search/style.ts index c37e85e23..492b7988c 100644 --- a/packages/app/src/components/quick-search/style.ts +++ b/packages/app/src/components/quick-search/style.ts @@ -73,7 +73,11 @@ export const StyledInputContent = styled('div')(({ theme }) => { }; }); export const StyledShortcut = styled('div')(({ theme }) => { - return { color: theme.colors.placeHolderColor, fontSize: theme.font.sm }; + return { + color: theme.colors.placeHolderColor, + fontSize: theme.font.sm, + whiteSpace: 'nowrap', + }; }); export const StyledLabel = styled('label')(({ theme }) => {