update
This commit is contained in:
parent
a5099a595a
commit
985ccece4a
@ -937,7 +937,7 @@ $: {
|
||||
{/if}
|
||||
<Pane class="w-full">
|
||||
|
||||
<main class="w-full overflow-y-auto bg-[#09090B] sm:p-4">
|
||||
<main class="w-full overflow-y-auto bg-[#09090B] xl:p-4">
|
||||
<slot />
|
||||
<Toaster class="bg-[#1A1A27] text-white text-medium"/>
|
||||
{#if Cookie && $showCookieConsent === true}
|
||||
|
||||
@ -183,7 +183,7 @@ function changeOrder(state:string) {
|
||||
<th class="text-start bg-[#09090B] text-white text-[1rem] font-semibold">
|
||||
Symbol
|
||||
</th>
|
||||
<th class="hidden sm:table-cell text-start bg-[#09090B] text-white text-[1rem] font-semibold">
|
||||
<th class="text-start bg-[#09090B] text-white text-[1rem] font-semibold">
|
||||
Name
|
||||
</th>
|
||||
|
||||
@ -206,16 +206,11 @@ function changeOrder(state:string) {
|
||||
{item?.date}
|
||||
</td>
|
||||
|
||||
<td class="text-[1rem] text-start">
|
||||
<div class="flex flex-col items-start">
|
||||
<span class="text-blue-400">{item?.ticker}</span>
|
||||
<span class="text-white sm:hidden">
|
||||
{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}
|
||||
</span>
|
||||
</div>
|
||||
<td class="text-blue-400 text-[1rem] text-start">
|
||||
{item?.ticker}
|
||||
</td>
|
||||
|
||||
<td class="hidden sm:table-cell text-white text-[1rem] text-white text-start">
|
||||
<td class="text-white text-[1rem] whitespace-nowrap text-white text-start">
|
||||
{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}
|
||||
</td>
|
||||
|
||||
|
||||
@ -460,7 +460,7 @@ $: {
|
||||
<div class="w-full">
|
||||
<div class="sm:flex sm:justify-start w-full">
|
||||
<!--Start Mobile Navbar-->
|
||||
<div class="navbar w-screen sticky top-0 z-30 bg-[#09090B] sm:hidden ">
|
||||
<div class="navbar w-screen sticky top-0 mt-4 z-30 bg-[#09090B] sm:hidden ">
|
||||
|
||||
<div class="{isScrolled ? 'border-b border-slate-800 ease-in' : 'ease-out'} m-auto w-full">
|
||||
|
||||
|
||||
@ -487,7 +487,7 @@ $: {
|
||||
<div class="w-full">
|
||||
<div class="sm:flex sm:justify-start w-full">
|
||||
<!--Start Mobile Navbar-->
|
||||
<div class="navbar w-screen sticky top-0 z-30 bg-[#09090B] sm:hidden">
|
||||
<div class="navbar w-screen sticky top-0 mt-4 z-30 bg-[#09090B] sm:hidden">
|
||||
|
||||
<div class="{isScrolled ? 'border-b border-slate-800 ease-in' : 'ease-out'} m-auto w-full">
|
||||
|
||||
|
||||
@ -405,7 +405,7 @@ $: isScrolled = y > 0;
|
||||
<div class="sm:flex sm:justify-start w-full">
|
||||
|
||||
<!--Start Mobile Navbar-->
|
||||
<header class="navbar w-screen fixed sticky top-0 z-30 bg-[#09090B] sm:hidden" style="top: 0rem;">
|
||||
<header class="navbar w-screen fixed sticky top-0 mt-4 z-30 bg-[#09090B] sm:hidden" style="top: 0rem;">
|
||||
|
||||
<div class="{isScrolled ? 'border-b border-slate-800 ease-in' : 'ease-out'} m-auto w-full">
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user