This commit is contained in:
MuslemRahimi 2024-11-25 12:13:57 +01:00
parent e85a5641a3
commit 3cd8a82f31

View File

@ -57,8 +57,12 @@
></thead ></thead
> >
<tbody> <tbody>
{#each similarStocks?.slice(0, 8) as item} {#each similarStocks?.slice(0, 8) as item, index}
<tr class="border-gray-600 border-b" <tr
class="border-gray-600 {index !==
similarStocks?.slice(0, 8).length - 1
? 'border-b'
: ''}"
><td class="text-left" ><td class="text-left"
><a ><a
href={`/stocks/${item?.symbol}`} href={`/stocks/${item?.symbol}`}
@ -82,6 +86,12 @@
{/each} {/each}
</tbody> </tbody>
</table> </table>
<a
href={`/list/most-employees`}
class="flex justify-center items-center rounded cursor-pointer w-full py-2 mt-3 text-[1rem] text-center font-semibold text-black m-auto sm:hover:bg-gray-300 bg-[#fff] transition duration-100"
>
Employee Rankings
</a>
</div> </div>
{/if} {/if}
</aside> </aside>