|
91 | 91 | <p>{project.description}</p>
|
92 | 92 | </div>
|
93 | 93 | <div class="flex flex-col gap-2">
|
94 |
| - <h3 class="text-gray-500 text-sm">提出ページ</h3> |
| 94 | + <h3 class="text-sm text-gray-500">提出ページ</h3> |
95 | 95 | <div class="flex gap-2">
|
96 | 96 | <label class="input input-bordered w-full rounded-xl bg-gray-50">
|
97 | 97 | <img
|
|
132 | 132 | </div>
|
133 | 133 | </div>
|
134 | 134 | <div class="flex flex-col gap-2">
|
135 |
| - <h3 class="text-gray-500 text-sm">締切</h3> |
| 135 | + <h3 class="text-sm text-gray-500">締切</h3> |
136 | 136 | <p>
|
137 | 137 | {project.closed_at ?? "締切が設定されていません"}
|
138 | 138 | </p>
|
|
171 | 171 | </div>
|
172 | 172 | </div>
|
173 | 173 | <div class="flex flex-col gap-2">
|
174 |
| - <h3 class="text-gray-500 text-sm">一般</h3> |
| 174 | + <h3 class="text-sm text-gray-500">一般</h3> |
175 | 175 | <div class="flex justify-end gap-2">
|
176 | 176 | <button
|
177 | 177 | class="btn btn-error btn-outline"
|
|
202 | 202 | </span>
|
203 | 203 | {:then [project, participants]}
|
204 | 204 | <ul class="list bg-base-100 rounded-box shadow-md">
|
205 |
| - <li class="p-4 pb-2 text-xs opacity-60 tracking-wide">提出した人</li> |
| 205 | + <li class="p-4 pb-2 text-xs tracking-wide opacity-60">提出した人</li> |
206 | 206 |
|
207 | 207 | {#if !participants.length}
|
208 | 208 | <li class="list-row">
|
209 | 209 | <div
|
210 |
| - class="text-xs font-semibold opacity-60 list-col-grow border-b-base-200" |
| 210 | + class="list-col-grow border-b-base-200 text-xs font-semibold opacity-60" |
211 | 211 | >
|
212 | 212 | 提出者がいません
|
213 | 213 | </div>
|
214 | 214 | </li>
|
215 | 215 | {:else}
|
216 | 216 | {#each participants as participant}
|
217 | 217 | <li class="list-row">
|
218 |
| - <div class="text-xs font-semibold opacity-60 border-b-base-200"> |
| 218 | + <div class="border-b-base-200 text-xs font-semibold opacity-60"> |
219 | 219 | {participant.name}
|
220 | 220 | </div>
|
221 |
| - <div class="text-xs opacity-60 list-col-grow border-b-base-200"> |
| 221 | + <div class="list-col-grow border-b-base-200 text-xs opacity-60"> |
222 | 222 | {#if !project.ok || project.data.project.multiple_roles}
|
223 | 223 | wants {participant.roles_count} roles
|
224 | 224 | {/if}
|
|
0 commit comments