ui fix
This commit is contained in:
parent
35c8e89efa
commit
f8b4bee818
@ -290,8 +290,8 @@ $: {
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<Sheet.Close asChild let:builder>
|
<Sheet.Close asChild let:builder>
|
||||||
<Button builders={[builder]} type="submit" class="bg-[#141417] hover:bg-[#141417] -ml-4 mr-auto">
|
<Button builders={[builder]} type="submit" class="w-full bg-[#141417] hover:bg-[#141417] -ml-4 mr-auto">
|
||||||
<a href="/" class="flex flex-row items-center mr-auto mt-5 ">
|
<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">
|
<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" />
|
<Home class="h-5.5 w-5.5" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -398,12 +398,12 @@ $: {
|
|||||||
{#each gainerLoserActive as item, index}
|
{#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">
|
<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">
|
<div class="flex flex-col">
|
||||||
<span class="text-blue-400 font-medium">
|
<span class="text-blue-400 font-medium">
|
||||||
{item?.symbol}
|
{item?.symbol}
|
||||||
</span>
|
</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}
|
{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user