This commit is contained in:
MuslemRahimi 2024-08-08 01:26:53 +02:00
parent 2f1366746c
commit 9d5de56ce0
2 changed files with 11 additions and 11 deletions

View File

@ -99,18 +99,18 @@
<style> <style>
.tick { .tick {
font-size: 11px; font-size: 13px;
} }
.tick line { .tick line {
stroke: #aaa; stroke: #fff;
} }
.tick .gridline { .tick .gridline {
stroke-dasharray: 2; stroke-dasharray: 2;
} }
.tick text { .tick text {
fill: #666; fill: #fff;
} }
.tick.tick-0 line { .tick.tick-0 line {

View File

@ -203,7 +203,7 @@ onMount( async() => {
<ArrowUpRight class="hidden sm:inline-block h-4 w-4 shrink-0 -mt-1 ml-0.5" /> <ArrowUpRight class="hidden sm:inline-block h-4 w-4 shrink-0 -mt-1 ml-0.5" />
</a> </a>
</div> </div>
<Card.Description class="mt-2">Recent hedge fund options with the highest premiums.</Card.Description> <Card.Description class="mt-2 text-sm sm:text-[1rem]">Recent hedge fund options with the highest premiums.</Card.Description>
</div> </div>
</Card.Header> </Card.Header>
<Card.Content> <Card.Content>
@ -222,22 +222,22 @@ onMount( async() => {
{#each data?.getDashboard?.optionsFlow as item} {#each data?.getDashboard?.optionsFlow as item}
<Table.Row> <Table.Row>
<Table.Cell> <Table.Cell>
<a href={item?.assetType === 'stock' ? `/stocks/${item?.ticker}` : `/etf/${item?.ticker}`} class="font-medium text-blue-400 sm:hover:text-white transition duration-100">{item?.ticker}</a> <a href={item?.assetType === 'stock' ? `/stocks/${item?.ticker}` : `/etf/${item?.ticker}`} class="text-sm sm:text-[1rem] font-medium text-blue-400 sm:hover:text-white transition duration-100">{item?.ticker}</a>
</Table.Cell> </Table.Cell>
<Table.Cell class="xl:table.-column {item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'}"> <Table.Cell class="xl:table.-column text-sm sm:text-[1rem] {item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'}">
{abbreviateNumber(item?.cost_basis,true)} {abbreviateNumber(item?.cost_basis,true)}
</Table.Cell> </Table.Cell>
<Table.Cell class="xl:table.-column"> <Table.Cell class="xl:table.-column text-sm sm:text-[1rem]">
${item?.strike_price} ${item?.strike_price}
</Table.Cell> </Table.Cell>
<Table.Cell class="md:table.-cell xl:table.-column {item?.sentiment === 'Bullish' ? 'text-[#00FC50]' : item?.sentiment === 'Bearish' ? 'text-[#FC2120]' : 'text-[#C6A755]'}"> <Table.Cell class="md:table.-cell xl:table.-column text-sm sm:text-[1rem] {item?.sentiment === 'Bullish' ? 'text-[#00FC50]' : item?.sentiment === 'Bearish' ? 'text-[#FC2120]' : 'text-[#C6A755]'}">
{item?.sentiment} {item?.sentiment}
</Table.Cell> </Table.Cell>
<Table.Cell class="md:table.-cell xl:table.-column {item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'}"> <Table.Cell class="md:table.-cell xl:table.-column text-sm sm:text-[1rem] {item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'}">
{item?.put_call} {item?.put_call}
</Table.Cell> </Table.Cell>
<Table.Cell class="text-right">{reformatDate(item?.date_expiration)}</Table.Cell> <Table.Cell class="text-right text-sm sm:text-[1rem]">{reformatDate(item?.date_expiration)}</Table.Cell>
</Table.Row> </Table.Row>
{/each} {/each}
</Table.Body> </Table.Body>
@ -255,7 +255,7 @@ onMount( async() => {
<ArrowUpRight class="hidden sm:inline-block h-4 w-4 shrink-0 -mt-1 ml-0.5" /> <ArrowUpRight class="hidden sm:inline-block h-4 w-4 shrink-0 -mt-1 ml-0.5" />
</a> </a>
</div> </div>
<Card.Description class="mt-2">Latest Retail Trader investing behavior to identify market trends.</Card.Description> <Card.Description class="mt-2 text-sm sm:text-[1rem]">Latest Retail Trader investing behavior to identify market trends.</Card.Description>
</div> </div>
</Card.Header> </Card.Header>
<Card.Content> <Card.Content>