@@ -287,14 +287,15 @@ watch(lastExecutionTime, () => {
287287 aria-hidden =" true"
288288 />
289289 <label for =" teams-search" class =" sr-only" >{{ $t('org.teams.filter_label') }}</label >
290- <input
290+ <InputBase
291291 id =" teams-search"
292292 v-model =" searchQuery"
293293 type =" search"
294294 name =" teams-search"
295295 :placeholder =" $t('org.teams.filter_placeholder')"
296- v-bind =" noCorrect"
297- class =" w-full ps-7 pe-2 py-1.5 font-mono text-sm bg-bg-subtle border border-border rounded text-fg placeholder:text-fg-subtle transition-colors duration-200 focus:border-accent focus-visible:(outline-2 outline-accent/70)"
296+ no-correct
297+ class =" w-full min-w-25 ps-7"
298+ size =" medium"
298299 />
299300 </div >
300301 <div
@@ -425,7 +426,7 @@ watch(lastExecutionTime, () => {
425426 >
426427 ~{{ user }}
427428 </NuxtLink >
428- <span class =" font-mono text-sm text-fg" >{{ teamName }}</span >
429+ <span class =" font-mono text-sm text-fg mx-2 " >{{ teamName }}</span >
429430 <button
430431 type =" button"
431432 class =" p-1 text-fg-subtle hover:text-red-400 transition-colors duration-200 rounded focus-visible:outline-accent/70"
@@ -446,14 +447,15 @@ watch(lastExecutionTime, () => {
446447 <label :for =" `add-user-${teamName}`" class =" sr-only" >{{
447448 $t('org.teams.username_to_add', { team: teamName })
448449 }}</label >
449- <input
450+ <InputBase
450451 :id =" `add-user-${teamName}`"
451452 v-model =" newUserUsername"
452453 type =" text"
453454 :name =" `add-user-${teamName}`"
454455 :placeholder =" $t('org.teams.username_placeholder')"
455- v-bind =" noCorrect"
456- class =" flex-1 px-2 py-1 font-mono text-sm bg-bg-subtle border border-border rounded text-fg placeholder:text-fg-subtle transition-colors duration-200 focus:border-border-hover focus-visible:outline-accent/70"
456+ no-correct
457+ class =" flex-1 min-w-25"
458+ size =" medium"
457459 />
458460 <button
459461 type =" submit"
@@ -497,25 +499,26 @@ watch(lastExecutionTime, () => {
497499 <form class =" flex items-center gap-2" @submit.prevent =" handleCreateTeam" >
498500 <div class =" flex-1 flex items-center" >
499501 <span
500- class =" px-2 py-1.5 font-mono text-sm text-fg-subtle bg-bg border border-ie-0 border-border rounded-is"
502+ class =" px-2 py-3 leading-none font-mono text-sm text-fg-subtle bg-bg border border-ie-0 border-border rounded-is"
501503 >
502504 {{ orgName }}:
503505 </span >
504506 <label for =" new-team-name" class =" sr-only" >{{ $t('org.teams.team_name_label') }}</label >
505- <input
507+ <InputBase
506508 id =" new-team-name"
507509 v-model =" newTeamName"
508510 type =" text"
509511 name =" new-team-name"
510512 :placeholder =" $t('org.teams.team_name_placeholder')"
511- v-bind =" noCorrect"
512- class =" flex-1 px-2 py-1.5 font-mono text-sm bg-bg border border-border rounded-ie text-fg placeholder:text-fg-subtle transition-colors duration-200 focus:border-border-hover focus-visible:outline-accent/70"
513+ no-correct
514+ class =" flex-1 min-w-25 rounded-is-none"
515+ size =" medium"
513516 />
514517 </div >
515518 <button
516519 type =" submit"
517520 :disabled =" !newTeamName.trim() || isCreatingTeam"
518- class =" px-3 py-1.5 font-mono text-xs text-bg bg-fg rounded transition-all duration-200 hover:bg-fg/90 disabled:opacity-50 disabled:cursor-not-allowed focus-visible:outline-accent/70"
521+ class =" px-3 py-2 font-mono text-xs text-bg bg-fg rounded transition-all duration-200 hover:bg-fg/90 disabled:opacity-50 disabled:cursor-not-allowed focus-visible:outline-accent/70"
519522 >
520523 {{ isCreatingTeam ? '…' : $t('org.teams.create_button') }}
521524 </button >
0 commit comments