Commit d5136299 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: styling

parent f1acf68b
...@@ -417,7 +417,7 @@ ...@@ -417,7 +417,7 @@
</div> </div>
{/if} {/if}
<div class="pl-2 my-2 flex-1 flex flex-col space-y-1 overflow-y-auto"> <div class="pl-2 my-2 flex-1 flex flex-col space-y-1 overflow-y-auto scrollbar-none">
{#each $chats.filter((chat) => { {#each $chats.filter((chat) => {
if (search === '') { if (search === '') {
return true; return true;
...@@ -831,3 +831,14 @@ ...@@ -831,3 +831,14 @@
</Tooltip> </Tooltip>
</div> </div>
</div> </div>
<style>
.scrollbar-none::-webkit-scrollbar {
display: none; /* for Chrome, Safari and Opera */
}
.scrollbar-none {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
</style>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment