navbar fix
This commit is contained in:
parent
ceda1eaba3
commit
7f878a12e4
@ -104,6 +104,7 @@ function handleTypeOfTrade(state:string)
|
|||||||
options: "/options",
|
options: "/options",
|
||||||
dividends: "/dividends",
|
dividends: "/dividends",
|
||||||
statistics: "/statistics",
|
statistics: "/statistics",
|
||||||
|
metrics: "metrics",
|
||||||
forecast: "/forecast",
|
forecast: "/forecast",
|
||||||
financials: "/financials",
|
financials: "/financials",
|
||||||
news: "/news",
|
news: "/news",
|
||||||
@ -754,13 +755,10 @@ function handleTypeOfTrade(state:string)
|
|||||||
|
|
||||||
<!--<div class="w-full max-w-3xl sm:max-w-2xl m-auto pt-2 pb-5 sm:pl-3 sticky z-20 bg-[#09090B]" style="top: {$screenWidth < 520 && $isScrollingUp ? '4rem' : '0rem'};">-->
|
<!--<div class="w-full max-w-3xl sm:max-w-2xl m-auto pt-2 pb-5 sm:pl-3 sticky z-20 bg-[#09090B]" style="top: {$screenWidth < 520 && $isScrollingUp ? '4rem' : '0rem'};">-->
|
||||||
<div
|
<div
|
||||||
class="-ml-2 sm:ml-4 w-screen sm:w-full {$screenWidth <
|
class="-ml-2 sm:ml-4 w-screen sm:w-full overflow-x-scroll mb-2"
|
||||||
640
|
|
||||||
? 'overflow-auto scrollbar '
|
|
||||||
: ''} mb-2"
|
|
||||||
>
|
>
|
||||||
<ul
|
<ul
|
||||||
class="pr-4 sm:pr-0 w-screen overflow-x-scroll font-medium flex flex-row items-center bg-[#09090B] space-x-3 rtl:space-x-reverse py-2"
|
class="pr-4 w-fit overflow-x-scroll font-medium flex flex-row items-center bg-[#09090B] space-x-3 rtl:space-x-reverse py-2"
|
||||||
>
|
>
|
||||||
<li class="cursor-pointer flex flex-col items-center">
|
<li class="cursor-pointer flex flex-col items-center">
|
||||||
<a
|
<a
|
||||||
|
|||||||
11
src/routes/stocks/[tickerID]/dividends/+layout.svelte
Normal file
11
src/routes/stocks/[tickerID]/dividends/+layout.svelte
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<section
|
||||||
|
class="w-full max-w-5xl bg-[#09090B] overflow-hidden text-black h-full mb-40"
|
||||||
|
>
|
||||||
|
<div class="h-full overflow-hidden">
|
||||||
|
<main class="w-full">
|
||||||
|
<div class="sm:ml-8 w-screen mb-2"></div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
11
src/routes/stocks/[tickerID]/options/+layout.svelte
Normal file
11
src/routes/stocks/[tickerID]/options/+layout.svelte
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<section
|
||||||
|
class="w-full max-w-5xl bg-[#09090B] overflow-hidden text-black h-full mb-40"
|
||||||
|
>
|
||||||
|
<div class="h-full overflow-hidden">
|
||||||
|
<main class="w-full">
|
||||||
|
<div class="sm:ml-8 w-screen mb-2"></div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
@ -117,11 +117,11 @@ updateYearRange()
|
|||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<section class="text-white w-full">
|
<section class="text-white w-full">
|
||||||
<div class="sm:p-7 m-auto mt-7 sm:mt-0">
|
<div class="sm:pb-7 sm:pt-7 sm:pl-7 m-auto mt-7 sm:mt-0">
|
||||||
<div class="mb-6">
|
<div class="mb-6">
|
||||||
{#if Object?.keys(quantStats)?.length !== 0}
|
{#if Object?.keys(quantStats)?.length !== 0}
|
||||||
<div
|
<div
|
||||||
class="space-y-5 xs:space-y-6 lg:grid xl:grid-cols-2 xl:space-x-10 lg:space-y-0"
|
class="space-y-5 xs:space-y-6 lg:grid 2xl:grid-cols-2 lg:space-x-6 2xl:space-x-10 lg:space-y-0"
|
||||||
>
|
>
|
||||||
<div class="flex flex-col space-y-5 xs:space-y-6 lg:space-y-8">
|
<div class="flex flex-col space-y-5 xs:space-y-6 lg:space-y-8">
|
||||||
<div
|
<div
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user