This commit is contained in:
MuslemRahimi 2024-06-18 10:38:13 +02:00
parent 1f5074f8d5
commit 7a491a61ef
2 changed files with 7 additions and 7 deletions

View File

@ -714,13 +714,13 @@ const debouncedHandleInput = debounce(handleInput, 200);
<tbody> <tbody>
{#each optionList as item,index} {#each optionList as item,index}
<!-- row --> <!-- row -->
<tr on:click={() => assetSelector(item?.ticker, item?.assetType)} class="w-full bg-[#0F0F0F] border-b-[#0F0F0F] cursor-pointer {index+1 === optionList?.length && data?.user?.tier !== 'Pro' ? 'opacity-[0.1]' : ''}"> <tr on:click={() => assetSelector(item?.ticker, item?.assetType)} class="w-full odd:bg-[#202020] cursor-pointer {index+1 === optionList?.length && data?.user?.tier !== 'Pro' ? 'opacity-[0.1]' : ''}">
<td class="text-white pb-3 text-xs sm:text-sm text-start"> <td class="text-white pb-3 text-xs sm:text-sm text-start">
{item?.time} {item?.time}
</td> </td>
<th class="bg-[#0F0F0F] text-blue-400 text-start font-normal"> <th class="{index % 2 ? 'bg-[#0F0F0F]' : 'bg-[#202020]'} text-blue-400 text-start font-normal">
{item?.ticker} {item?.ticker}
</th> </th>

View File

@ -280,7 +280,7 @@ const debouncedHandleInput = debounce(handleInput, 200);
<div> <div>
<div class="flex flex-row justify-center items-center"> <div class="flex flex-row justify-center items-center">
<h1 class="text-3xl sm:text-4xl text-white text-center font-bold mb-5"> <h1 class="text-3xl sm:text-4xl text-white text-center font-bold mb-5">
0DTE to Wendy's 0DTE Options Flow
</h1> </h1>
</div> </div>
@ -536,13 +536,13 @@ const debouncedHandleInput = debounce(handleInput, 200);
<tbody> <tbody>
{#each optionList as item,index} {#each optionList as item,index}
<!-- row --> <!-- row -->
<tr on:click={() => assetSelector(item?.ticker, item?.assetType)} class="w-full bg-[#0F0F0F] border-b-[#0F0F0F] cursor-pointer {index+1 === optionList?.length && data?.user?.tier !== 'Pro' ? 'opacity-[0.1]' : ''}"> <tr on:click={() => assetSelector(item?.ticker, item?.assetType)} class="w-full odd:bg-[#202020] cursor-pointer {index+1 === optionList?.length && data?.user?.tier !== 'Pro' ? 'opacity-[0.1]' : ''}">
<td class="text-white pb-3 text-xs sm:text-sm text-start"> <td class="text-white pb-3 text-xs sm:text-sm text-start">
{item?.time} {item?.time}
</td> </td>
<th class="bg-[#0F0F0F] text-blue-400 text-start font-normal"> <th class="{index % 2 ? 'bg-[#0F0F0F]' : 'bg-[#202020]'} text-blue-400 text-start font-normal">
{item?.ticker} {item?.ticker}
</th> </th>
@ -550,8 +550,8 @@ const debouncedHandleInput = debounce(handleInput, 200);
{item?.strike_price} {item?.strike_price}
</td> </td>
<td class="{item?.sentiment === 'Bullish' ? 'text-[#00FC50]' : item?.sentiment === 'Bearish' ? 'text-[#FC2120]' : 'text-[#C6A755]'} text-start"> <td class="{item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'} text-start">
{item?.sentiment} {item?.put_call}
</td> </td>
<td class="{item?.sentiment === 'Bullish' ? 'text-[#00FC50]' : 'text-[#FC2120]'} text-start"> <td class="{item?.sentiment === 'Bullish' ? 'text-[#00FC50]' : 'text-[#FC2120]'} text-start">