add more rules

This commit is contained in:
MuslemRahimi 2024-09-10 00:07:12 +02:00
parent 36bb92ae81
commit 72cffea62b

View File

@ -1057,7 +1057,7 @@ function handleInput(event) {
<tr class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] bg-[#09090B] border-b-[#09090B] odd:bg-[#27272A]">
<td class="border-b-[#09090B] whitespace-nowrap">
<div class="flex flex-col items-start">
<a href={"/stocks/"+item?.symbol} on:click={() => handleSave(false)} class="text-blue-400 text-sm sm:text-[1rem]">{item?.symbol}</a>
<a href={"/stocks/"+item?.symbol} on:click={() => handleSave(false)} class="sm:hover:text-white text-blue-400 text-sm sm:text-[1rem]">{item?.symbol}</a>
<span class="text-white text-xs sm:hidden">{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}</span>
</div>