ui fix
This commit is contained in:
parent
b3b5be950e
commit
14f890039f
@ -302,7 +302,7 @@ onMount(async () => {
|
||||
<li class="flex items-center space-x-3 ">
|
||||
<!-- Icon -->
|
||||
<svg class="flex-shrink-0 w-5 h-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSSuccess0"><g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"><path fill="#fff" stroke="#fff" d="m24 4l5.253 3.832l6.503-.012l1.997 6.188l5.268 3.812L41 24l2.021 6.18l-5.268 3.812l-1.997 6.188l-6.503-.012L24 44l-5.253-3.832l-6.503.012l-1.997-6.188l-5.268-3.812L7 24l-2.021-6.18l5.268-3.812l1.997-6.188l6.503.012L24 4Z"/><path stroke="#09090B" d="m17 24l5 5l10-10"/></g></mask><path fill="#10db06" d="M0 0h48v48H0z" mask="url(#ipSSuccess0)"/></svg>
|
||||
<span class="text-white text-[1rem] font-semibold">Pay Once and never again.</span>
|
||||
<span class="text-white text-[1rem] font-semibold">Pay Once and use forever.</span>
|
||||
</li>
|
||||
<li class="flex items-center space-x-3 ">
|
||||
<!-- Icon -->
|
||||
|
||||
@ -204,7 +204,7 @@ onMount( async() => {
|
||||
{#each data?.getDashboard?.optionsFlow as item}
|
||||
<Table.Row>
|
||||
<Table.Cell>
|
||||
<a href={item?.assetType === 'stock' ? `/stocks/${item?.ticker}` : `/etf/${item?.ticker}`} class="font-medium text-blue-400">{item?.ticker}</a>
|
||||
<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>
|
||||
</Table.Cell>
|
||||
<Table.Cell class="xl:table.-column {item?.put_call === 'Calls' ? 'text-[#00FC50]' : 'text-[#FC2120]'}">
|
||||
{abbreviateNumber(item?.cost_basis,true)}
|
||||
@ -250,7 +250,7 @@ onMount( async() => {
|
||||
<p class="text-sm text-muted-foreground">{item?.party ?? 'n/a'}</p>
|
||||
</div>
|
||||
<div class="flex flex-col items-end justify-end text-lg ml-auto">
|
||||
<a href={item?.ticker?.length !== 0 ? `/stocks/${item?.ticker}` : ''} class="text-sm {item?.ticker?.length !== 0 ? 'text-blue-400' : 'text-white cursor-text'} font-medium leading-none">
|
||||
<a href={item?.ticker?.length !== 0 ? `/stocks/${item?.ticker}` : ''} class="text-sm {item?.ticker?.length !== 0 ? 'text-blue-400 sm:hover:text-white transition duration-100' : 'text-white cursor-text'} font-medium leading-none">
|
||||
{item?.ticker?.length !== 0 ? item?.ticker : formatString(item?.assetDescription)?.slice(0,15) + '...'}
|
||||
</a>
|
||||
|
||||
|
||||
@ -402,7 +402,7 @@ async function purchasePlan(subscriptionType:string='') {
|
||||
<li class="flex items-center space-x-3 ">
|
||||
<!-- Icon -->
|
||||
<svg class="flex-shrink-0 w-5 h-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSSuccess0"><g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"><path fill="#fff" stroke="#fff" d="m24 4l5.253 3.832l6.503-.012l1.997 6.188l5.268 3.812L41 24l2.021 6.18l-5.268 3.812l-1.997 6.188l-6.503-.012L24 44l-5.253-3.832l-6.503.012l-1.997-6.188l-5.268-3.812L7 24l-2.021-6.18l5.268-3.812l1.997-6.188l6.503.012L24 4Z"/><path stroke="#09090B" d="m17 24l5 5l10-10"/></g></mask><path fill="#10db06" d="M0 0h48v48H0z" mask="url(#ipSSuccess0)"/></svg>
|
||||
<span class="text-white text-[1rem] font-semibold">Pay Once and never again.</span>
|
||||
<span class="text-white text-[1rem] font-semibold">Pay Once and use forever.</span>
|
||||
</li>
|
||||
<li class="flex items-center space-x-3 ">
|
||||
<!-- Icon -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user