forked from open-webui/open-webui
fix: styling
This commit is contained in:
parent
f1acf68bd0
commit
d513629984
1 changed files with 12 additions and 1 deletions
|
@ -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 @@
|
||||||
</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>
|
||||||
|
|
Loading…
Reference in a new issue