From a9596f423f84f7fed746ebbb276dd4f9983c3980 Mon Sep 17 00:00:00 2001 From: Estee Date: Sat, 5 Aug 2023 20:52:03 -0700 Subject: [PATCH] style(App.vue): update secondary-button class styles The styles for the secondary-button class have been updated to use a darker background color (dark:bg-zinc-800) to improve visibility. --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index bbafb26..0e19103 100644 --- a/src/App.vue +++ b/src/App.vue @@ -631,7 +631,7 @@ function uploadImage() { } .secondary-button { - @apply outline-none p-1.5 bg-zinc-50 dark:bg-zinc-900 text-zinc-900 dark:text-zinc-100 shadow-md hover:shadow transition-shadow rounded-lg; + @apply outline-none p-1.5 bg-zinc-50 dark:bg-zinc-800 text-zinc-900 dark:text-zinc-100 shadow-md hover:shadow transition-shadow rounded-lg; @apply focus-visible:shadow-md dark:focus-visible:ring-1 focus-visible:ring-white; }