File tree 1 file changed +2
-2
lines changed
BlazorDiffusion/wwwroot/pages
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -159,10 +159,10 @@ export default {
159
159
160
160
<div class="mb-4">
161
161
<h3 class="text-lg font-medium mb-4 text-center">Select Model</h3>
162
- <div class="mx-auto grid grid-cols-2 gap-4 w-80 ">
162
+ <div class="mx-auto flex gap-4 justify-center ">
163
163
<div v-for="model in models" :key="model.id"
164
164
@click="selectModel(model)"
165
- :class="['cursor-pointer transition-colors relative cursor-pointer overflow-hidden rounded-lg ring-1 border border-transparent focus:outline-none',
165
+ :class="['max-w-32 cursor-pointer transition-colors relative cursor-pointer overflow-hidden rounded-lg ring-1 border border-transparent focus:outline-none',
166
166
selectedModel.id === model.id ? 'bg-indigo-700 border-indigo-700 ring-indigo-700' : 'ring-gray-800 bg-gray-800 border-gray-800 hover:ring-indigo-500 hover:border-indigo-500']">
167
167
<div class="">
168
168
<img :src="model.icon" :alt="model.name" class="w-full h-full object-cover">
You can’t perform that action at this time.
0 commit comments