From e7a476150f4e98e6bacbf58c09feb9d2384db7f0 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Mon, 30 Dec 2024 12:10:13 +0100 Subject: [PATCH] chore(style): buttons are left-aligned by default --- front/src/components/ui/Button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/ui/Button.vue b/front/src/components/ui/Button.vue index 8f567a1e7..8ac001c6d 100644 --- a/front/src/components/ui/Button.vue +++ b/front/src/components/ui/Button.vue @@ -63,7 +63,7 @@ onMounted(() => { class="funkwhale button" :class="[ 'is-text-aligned-' + (alignText ?? 'center'), - 'is-self-aligned-' + (alignSelf ?? 'center'), + 'is-self-aligned-' + (alignSelf ?? 'start'), { 'is-active': isActive, 'is-loading': isLoading,