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
b6b71c08
Commit
b6b71c08
authored
May 26, 2024
by
Timothy J. Baek
Browse files
fix: styling
parent
47a9a2a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/lib/components/admin/Settings/Banners.svelte
src/lib/components/admin/Settings/Banners.svelte
+7
-6
No files found.
src/lib/components/admin/Settings/Banners.svelte
View file @
b6b71c08
...
@@ -76,16 +76,17 @@
...
@@ -76,16 +76,17 @@
<div class=" flex justify-between">
<div class=" flex justify-between">
<div class="flex flex-row flex-1 border rounded-xl dark:border-gray-800">
<div class="flex flex-row flex-1 border rounded-xl dark:border-gray-800">
<select
<select
class="w-fit capitalize rounded-xl py-2 px-4 text-xs bg-transparent outline-none
text-gray-900
"
class="w-fit capitalize rounded-xl py-2 px-4 text-xs bg-transparent outline-none"
bind:value={banner.type}
bind:value={banner.type}
>
>
{#if banner.type == ''}
{#if banner.type == ''}
<option value="" selected disabled class="">{$i18n.t('Type')}</option>
<option value="" selected disabled class="text-gray-900">{$i18n.t('Type')}</option
>
{/if}
{/if}
<option value="info">{$i18n.t('Info')}</option>
<option value="info"
class="text-gray-900"
>{$i18n.t('Info')}</option>
<option value="warning">{$i18n.t('Warning')}</option>
<option value="warning"
class="text-gray-900"
>{$i18n.t('Warning')}</option>
<option value="error">{$i18n.t('Error')}</option>
<option value="error"
class="text-gray-900"
>{$i18n.t('Error')}</option>
<option value="success">{$i18n.t('Success')}</option>
<option value="success"
class="text-gray-900"
>{$i18n.t('Success')}</option>
</select>
</select>
<input
<input
...
...
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