use w-9 h-9

This commit is contained in:
pat-s 2024-12-22 23:13:12 +01:00
parent aafa0650d7
commit a652982eb5
No known key found for this signature in database
GPG key ID: 3C6318841EF78925
8 changed files with 11 additions and 11 deletions

View file

@ -24,13 +24,13 @@
<IconButton
icon="edit"
:title="$t('admin.settings.agents.edit_agent')"
class="ml-2 w-8 h-8"
class="ml-2 w-9 h-9"
@click="$emit('edit', agent)"
/>
<IconButton
icon="trash"
:title="$t('admin.settings.agents.delete_agent')"
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
:is-loading="props.isDeleting"
@click="$emit('delete', agent)"
/>

View file

@ -1,5 +1,5 @@
<template>
<router-link v-if="to" :to="to" :title="title" :aria-label="title" class="w-8 h-8 icon-button">
<router-link v-if="to" :to="to" :title="title" :aria-label="title" class="w-9 h-9 icon-button">
<slot>
<Icon v-if="icon" :name="icon" />
</slot>

View file

@ -15,7 +15,7 @@
v-if="goBack"
icon="back"
:title="$t('back')"
class="flex-shrink-0 mr-2 <md:hidden md:justify-between w-8 h-8"
class="flex-shrink-0 mr-2 <md:hidden md:justify-between w-9 h-9"
@click="goBack"
/>
<h1 class="flex text-xl min-w-0 text-wp-text-100 items-center gap-x-2">

View file

@ -8,7 +8,7 @@
<span>{{ registry.address }}</span>
<IconButton
:icon="registry.readonly ? 'chevron-right' : 'edit'"
class="ml-auto w-8 h-8"
class="ml-auto w-9 h-9"
:title="registry.readonly ? $t('registries.view') : $t('registries.edit')"
@click="editRegistry(registry)"
/>

View file

@ -17,13 +17,13 @@
<template v-if="secret.edit !== false">
<IconButton
icon="edit"
class="ml-2 <md:ml-auto w-8 h-8"
class="ml-2 <md:ml-auto w-9 h-9"
:title="$t('secrets.edit')"
@click="editSecret(secret)"
/>
<IconButton
icon="trash"
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
:is-loading="isDeleting"
:title="$t('secrets.delete')"
@click="deleteSecret(secret)"

View file

@ -10,7 +10,7 @@
<IconButton
icon="chevron-right"
:title="$t('admin.settings.orgs.view')"
class="ml-auto w-8 h-8"
class="ml-auto w-9 h-9"
:to="{ name: 'org', params: { orgId: org.id } }"
/>
<IconButton
@ -22,7 +22,7 @@
<IconButton
icon="trash"
:title="$t('admin.settings.orgs.delete_org')"
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
:is-loading="isDeleting"
@click="deleteOrg(org)"
/>

View file

@ -33,7 +33,7 @@
<IconButton
icon="trash"
:title="$t('admin.settings.users.delete_user')"
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
:is-loading="isDeleting"
@click="deleteUser(user)"
/>

View file

@ -28,7 +28,7 @@
</span>
<span v-else class="col-span-2 <md:hidden">{{ $t('repo.settings.crons.not_executed_yet') }}</span>
</span>
<IconButton icon="play" class="ml-auto w-8 h-8" :title="$t('repo.settings.crons.run')" @click="runCron(cron)" />
<IconButton icon="play" class="ml-auto w-9 h-9" :title="$t('repo.settings.crons.run')" @click="runCron(cron)" />
<IconButton icon="edit" class="w-8 h-8" :title="$t('repo.settings.crons.edit')" @click="selectedCron = cron" />
<IconButton
icon="trash"