This commit is contained in:
MuslemRahimi 2024-08-12 12:11:29 +02:00
parent 35c8e89efa
commit f8b4bee818
2 changed files with 4 additions and 4 deletions

View File

@ -290,8 +290,8 @@ $: {
</a>
<Sheet.Close asChild let:builder>
<Button builders={[builder]} type="submit" class="bg-[#141417] hover:bg-[#141417] -ml-4 mr-auto">
<a href="/" class="flex flex-row items-center mr-auto mt-5 ">
<Button builders={[builder]} type="submit" class="w-full bg-[#141417] hover:bg-[#141417] -ml-4 mr-auto">
<a href="/" class="w-full flex flex-row items-center mr-auto mt-5 ">
<div class="flex h-9 w-9 items-center justify-center rounded-lg text-white transition-colors hover:text-white md:h-8 md:w-8">
<Home class="h-5.5 w-5.5" />
</div>

View File

@ -398,12 +398,12 @@ $: {
{#each gainerLoserActive as item, index}
<tr on:click={() => goto("/stocks/"+item?.symbol)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] cursor-pointer">
<td class="border-b-[#09090B] whitespace-nowrap">
<td class="border-b-[#09090B] text-sm sm:text-[1rem] whitespace-nowrap">
<div class="flex flex-col">
<span class="text-blue-400 font-medium">
{item?.symbol}
</span>
<span class="text-white text-opacity-[0.8] font-medium border-b-[#09090B]">
<span class="text-white font-medium border-b-[#09090B]">
{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}
</span>
</div>