From 3c11e06304184fd574309d7bbdd6ce641ae414f8 Mon Sep 17 00:00:00 2001 From: Cristopher Date: Sun, 18 Feb 2024 21:33:43 +0700 Subject: [PATCH] feat: add tooltip for generate html template choice --- src/components/Button.vue | 12 ++++++++++-- src/components/Footer.vue | 10 +++++----- src/components/PlatformBox.vue | 5 ++++- src/components/UploadBox.vue | 16 +++++++++------- src/router/pages/404.vue | 2 +- src/router/pages/about.vue | 15 +++++++-------- src/router/pages/index.vue | 23 ++++++++++++++--------- 7 files changed, 50 insertions(+), 33 deletions(-) diff --git a/src/components/Button.vue b/src/components/Button.vue index caeb3cf..667e285 100644 --- a/src/components/Button.vue +++ b/src/components/Button.vue @@ -37,8 +37,16 @@ const activeThemes: Record = { hover:bg-primary-dark active:bg-primary-dark focus:bg-primary-dark - active:(outline-none ring ring-4 ring-primary-light ring-opacity-50) - focus:(outline-none ring ring-4 ring-primary-light ring-opacity-50)`, + active:outline-none + active:ring + active:ring-4 + active:ring-primary-light + active:ring-opacity-50 + focus:outline-none + focus:ring + focus:ring-4 + focus:ring-primary-light + focus:ring-opacity-50`, }; const disabledThemes: Record = { diff --git a/src/components/Footer.vue b/src/components/Footer.vue index 22bd0bf..10082ed 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -2,11 +2,11 @@