mirror of
https://github.com/open-webui/open-webui
synced 2025-01-30 14:29:55 +00:00
fix: styling
This commit is contained in:
parent
47a9a2a190
commit
b6b71c08f3
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user