diff --git a/src/app.css b/src/app.css index 8d3c2720..189400a4 100644 --- a/src/app.css +++ b/src/app.css @@ -53,10 +53,14 @@ } .no-scrollbar { - -ms-overflow-style: none; /* IE and Edge */ - scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ + overflow: -moz-scrollbars-none; /* Legacy support for older Firefox versions */ + } + + .no-scrollbar::-webkit-scrollbar { + display: none; /* Chrome, Safari, and other WebKit-based browsers */ } - .shake-ticker:hover img { diff --git a/src/lib/components/OptionsNetFlow.svelte b/src/lib/components/OptionsNetFlow.svelte index c5c05aa2..e655f86e 100644 --- a/src/lib/components/OptionsNetFlow.svelte +++ b/src/lib/components/OptionsNetFlow.svelte @@ -74,8 +74,8 @@ }, animation: $screenWidth < 640 ? false: true, grid: { - left: '2%', - right: '4%', + left: '1%', + right: $screenWidth < 640 ? '2%' : '0%', bottom: '0%', top: '10%', containLabel: true diff --git a/src/routes/etf/[tickerID]/+layout.svelte b/src/routes/etf/[tickerID]/+layout.svelte index 66ceff32..d4065893 100644 --- a/src/routes/etf/[tickerID]/+layout.svelte +++ b/src/routes/etf/[tickerID]/+layout.svelte @@ -586,19 +586,20 @@ $: { -