Commit b6b71c08 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: styling

parent 47a9a2a1
...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment