Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
d5136299
Commit
d5136299
authored
Apr 30, 2024
by
Timothy J. Baek
Browse files
fix: styling
parent
f1acf68b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
src/lib/components/layout/Sidebar.svelte
src/lib/components/layout/Sidebar.svelte
+12
-1
No files found.
src/lib/components/layout/Sidebar.svelte
View file @
d5136299
...
@@ -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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment