From 32449e7c4cc4d7d352ad317bdd9a38ec6fa35c75 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Fri, 28 Jun 2024 02:27:01 +0000 Subject: [PATCH] fix: logout btn color --- src/components/ProfileMenu.vue | 2 +- src/i18n/en-US/alert-dialog.ts | 3 +++ src/i18n/th-th/alert-dialog.ts | 3 +++ src/layouts/MainLayout.vue | 8 +++++--- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/ProfileMenu.vue b/src/components/ProfileMenu.vue index 4574bfac..48f0ed17 100644 --- a/src/components/ProfileMenu.vue +++ b/src/components/ProfileMenu.vue @@ -273,13 +273,13 @@ onMounted(async () => { v-if="isLoggedIn()" no-caps dense - color="negative" unelevated class="q-ma-md app-text-negative" :class="{ dark: $q.dark.isActive }" :label="$t('logout')" @click="$emit('logout')" id="btn-logout" + style="background-color: hsla(var(--negative-bg) / 0.1)" v-close-popup /> { logout(); }, + cancel: () => {}, }); }