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
6603a40b
Commit
6603a40b
authored
Feb 15, 2024
by
Timothy J. Baek
Browse files
fix: classnames
parent
27ae4d0d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
src/lib/components/layout/Navbar.svelte
src/lib/components/layout/Navbar.svelte
+3
-4
src/routes/(app)/+page.svelte
src/routes/(app)/+page.svelte
+1
-1
No files found.
src/lib/components/layout/Navbar.svelte
View file @
6603a40b
...
@@ -72,10 +72,9 @@
...
@@ -72,10 +72,9 @@
class=" fixed py-2.5 top-0 flex flex-row justify-center bg-white/95 dark:bg-gray-900/90 dark:text-gray-200 backdrop-blur-xl w-screen z-30"
class=" fixed py-2.5 top-0 flex flex-row justify-center bg-white/95 dark:bg-gray-900/90 dark:text-gray-200 backdrop-blur-xl w-screen z-30"
>
>
<div
<div
class=" flex
class=" flex {$settings?.fullScreenMode ?? null
? 'max-w-full'
{$settings?.fullScreenMode ?? null ? 'max-w-full' : 'max-w-3xl'}
: 'max-w-3xl'} w-full mx-auto px-3"
w-full mx-auto px-3"
>
>
<div class="flex items-center w-full max-w-full">
<div class="flex items-center w-full max-w-full">
<div class="pr-2 self-start">
<div class="pr-2 self-start">
...
...
src/routes/(app)/+page.svelte
View file @
6603a40b
...
@@ -784,7 +784,7 @@
...
@@ -784,7 +784,7 @@
<div
<div
class="{$settings?.fullScreenMode ?? null
class="{$settings?.fullScreenMode ?? null
? 'max-w-full'
? 'max-w-full'
: 'max-w-2xl md:px-0'}mx-auto w-full px-4 md:px-0 mt-10"
: 'max-w-2xl md:px-0'}
mx-auto w-full px-4 md:px-0 mt-10"
>
>
<ModelSelector bind:selectedModels disabled={messages.length > 0} />
<ModelSelector bind:selectedModels disabled={messages.length > 0} />
</div>
</div>
...
...
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