fix: quick search shortcut style should no wrap (#648)

This commit is contained in:
JimmFly 2023-01-02 00:21:04 +08:00 committed by GitHub
parent 796d078a15
commit fe47ab6063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }) => {