Skip to content

Commit

Permalink
chore: fixes padding
Browse files Browse the repository at this point in the history
  • Loading branch information
amir20 committed Nov 11, 2023
1 parent d14d140 commit 542c895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/components/Links.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<dropdown class="dropdown-end" v-if="config.user">
<template #trigger>
<img class="h-7 w-7 max-w-none rounded-full p-px ring-1 ring-base-content/60" :src="config.user.avatar" />
<img class="h-6 w-6 max-w-none rounded-full p-px ring-1 ring-base-content/60" :src="config.user.avatar" />
</template>
<template #content>
<div class="p-2">
Expand All @@ -42,7 +42,7 @@
</div>
<ul class="menu mt-4 p-0">
<li v-if="config.authProvider === 'simple'">
<button @click.prevent="logout()" class="text-primary">{{ $t("button.logout") }}</button>
<button @click.prevent="logout()" class="p-2 text-primary">{{ $t("button.logout") }}</button>
</li>
</ul>
</template>
Expand Down

0 comments on commit 542c895

Please sign in to comment.