1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 22:39:18 +01:00

chore: uses size-x instead of w-x h-x (#2615)

This commit is contained in:
Amir Raminfar
2023-12-20 11:56:48 -08:00
committed by GitHub
parent f46900ec28
commit 3a214590be
11 changed files with 23 additions and 23 deletions

View File

@@ -14,9 +14,9 @@
<dropdown class="dropdown-end" @closed="latestTag = latest?.tag ?? config.version">
<template #trigger>
<mdi:announcement class="h-6 w-6 -rotate-12" />
<mdi:announcement class="size-6 -rotate-12" />
<span
class="absolute right-px top-0 h-2 w-2 rounded-full bg-red"
class="absolute right-px top-0 size-2 rounded-full bg-red"
v-if="hasUpdate && latestTag != latest?.tag"
></span>
</template>
@@ -30,7 +30,7 @@
<dropdown class="dropdown-end" v-if="config.user">
<template #trigger>
<img
class="h-6 w-6 max-w-none rounded-full p-px ring-1 ring-base-content/60"
class="size-6 max-w-none rounded-full p-px ring-1 ring-base-content/60"
:src="withBase('/api/profile/avatar')"
/>
</template>