"vscode:/vscode.git/clone" did not exist on "0bc665e9a70e1c599f940d6d2d9eb06c25b2d9d7"
Commit a938ab30 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: model select option text styling

parent 9afb7fff
...@@ -1145,13 +1145,13 @@ ...@@ -1145,13 +1145,13 @@
bind:value={selectedModel} bind:value={selectedModel}
disabled={messages.length != 0} disabled={messages.length != 0}
> >
<option value="" selected>Select a model</option> <option class=" text-gray-700" value="" selected>Select a model</option>
{#each models as model} {#each models as model}
{#if model.name === 'hr'} {#if model.name === 'hr'}
<hr /> <hr />
{:else} {:else}
<option value={model.name} class=" text-lg">{model.name}</option> <option value={model.name} class="text-gray-700 text-lg">{model.name}</option>
{/if} {/if}
{/each} {/each}
</select> </select>
......
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