diff --git a/src/routes/stock-screener/+page.svelte b/src/routes/stock-screener/+page.svelte index 1242ac4b..c256660c 100644 --- a/src/routes/stock-screener/+page.svelte +++ b/src/routes/stock-screener/+page.svelte @@ -2547,10 +2547,8 @@ const handleKeyDown = (event) => {
-

Stock Screener

- +

Stock Screener

+ {filteredData?.length} Matches Found
@@ -2558,7 +2556,7 @@ const handleKeyDown = (event) => {
@@ -2567,9 +2565,9 @@ const handleKeyDown = (event) => {
-
-
+
+
{:else} @@ -3056,7 +3054,7 @@ const handleKeyDown = (event) => { : ""} on:input={(e) => handleValueInput(e, row?.rule)} - class="ios-zoom-fix block max-w-[4.8rem] rounded-sm placeholder:text-gray-200 font-normal p-1 text-sm shadow-xs focus:border-blue-500 focus:ring-blue-500 bg-secondary" + class="ios-zoom-fix block max-w-[4.8rem] rounded-sm placeholder:text-gray-200 font-normal p-1 text-sm shadow-sm focus:border-blue-500 focus:ring-blue-500 bg-secondary" /> {/if} @@ -3071,7 +3069,7 @@ const handleKeyDown = (event) => { "add", )} > { "minus", )} > { ]?.includes(row?.rule) ? 'hidden' : ''} absolute fixed sticky w-full border-0 bg-default border-b border-gray-200 - focus:border-gray-200 focus:ring-0 text-white placeholder:text-gray-300" + focus:border-gray-200 focus:ring-0 placeholder:text-gray-300" type="search" placeholder="Search..." /> @@ -3152,7 +3150,7 @@ const handleKeyDown = (event) => { row?.step[index + 1], ]); }} - class="block w-full border-b border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded text-white last:border-0 sm:hover:bg-primary focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden" + class="block w-full border-b border-gray-300 dark:border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded last:border-0 sm:hover:bg-primary focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden" > {ruleCondition[row?.rule]?.replace( "between", @@ -3170,7 +3168,7 @@ const handleKeyDown = (event) => { on:click={() => { handleChangeValue(newValue); }} - class="block w-full border-b border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded text-white last:border-0 sm:hover:bg-primary focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden" + class="block w-full border-b border-gray-300 dark:border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded last:border-0 sm:hover:bg-primary focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden" > {ruleCondition[row?.rule] ?.replace("under", "Under") @@ -3193,7 +3191,7 @@ const handleKeyDown = (event) => { on:click={() => { handleChangeValue(item); }} - class="cursor-pointer text-white" + class="cursor-pointer" for={item} >

{filteredData?.length} Stocks