fix: Resolves large keywords breaking the keywords table ui

This commit is contained in:
towfiqi
2024-02-22 19:12:44 +06:00
parent 7e8840c2e2
commit 724d3c8d43

View File

@@ -99,7 +99,7 @@ const Keyword = (props: KeywordProps) => {
<Icon type="check" size={10} />
</button>
<a
className='py-2 hover:text-blue-600 lg:flex lg:items-center lg:w-full'
className='py-2 hover:text-blue-600 lg:flex lg:items-center lg:w-full lg:max-w-[200px]'
onClick={() => showKeywordDetails()}>
<span className={`fflag fflag-${country} w-[18px] h-[12px] mr-2`} title={countries[country][0]} />
<span className=' text-ellipsis overflow-hidden whitespace-nowrap w-[calc(100%-30px)]'>{keyword}{city ? ` (${city})` : ''}</span>