Updated the Did You Mean to not be cut off (#13725)

This commit is contained in:
Anna Everhart 2025-06-10 08:32:48 -07:00 committed by GitHub
parent 72b1dd5053
commit f632f970a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,16 @@
import { colors } from '@components';
import React from 'react'; import React from 'react';
import { useHistory } from 'react-router'; import { useHistory } from 'react-router';
import styled from 'styled-components'; import styled from 'styled-components';
import { ANTD_GRAY_V2 } from '@app/entity/shared/constants';
import { navigateToSearchUrl } from '@app/searchV2/utils/navigateToSearchUrl'; import { navigateToSearchUrl } from '@app/searchV2/utils/navigateToSearchUrl';
import { SearchSuggestion } from '@types'; import { SearchSuggestion } from '@types';
const TextWrapper = styled.div` const TextWrapper = styled.div`
font-size: 14px; font-size: 14px;
color: ${ANTD_GRAY_V2[8]}; color: ${colors.gray[1700]};
margin: -8px 0px 16px 24px; margin: 8px 0px 0px 12px;
`; `;
export const SuggestedText = styled.span` export const SuggestedText = styled.span`