From 29b4dd500b9035e3851f357a0fd406542a106761 Mon Sep 17 00:00:00 2001 From: Robert James Gabriel Date: Fri, 21 Jul 2023 19:40:31 -0500 Subject: [PATCH] Tweaked the design --- app/scripts/app.vue | 2 +- app/scripts/popup.js | 4 ++-- package.json | 6 ------ 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/app/scripts/app.vue b/app/scripts/app.vue index d213d93..a59d6b3 100644 --- a/app/scripts/app.vue +++ b/app/scripts/app.vue @@ -252,7 +252,7 @@ switch (TYPE) { case 'success': - this.$toast.success(MESSAGE); + this.$toast.info(MESSAGE); break; case 'error': this.$toast.error(MESSAGE); diff --git a/app/scripts/popup.js b/app/scripts/popup.js index d0fa5c6..580d185 100644 --- a/app/scripts/popup.js +++ b/app/scripts/popup.js @@ -9,8 +9,8 @@ const app = createApp(App); app.provide("$helperbird_i18n", $helperbird_i18n); app.provide("sendToContentScript", sendToContentScript); app.use(Toaster, { - position: "bottom-right", - duration: 4000, + position: "bottom", + duration: 2000, dismissible: false, }); diff --git a/package.json b/package.json index 7c31729..a187835 100644 --- a/package.json +++ b/package.json @@ -23,12 +23,6 @@ "test": "node --experimental-vm-modules ./node_modules/.bin/jest", "build": "npm run clean && npm run chrome" }, - - "type": "module", - "jest": { - "testEnvironment": "node", - "transformIgnorePatterns": [] - }, "devDependencies": { "@babel/core": "^7.22.9", "@babel/preset-env": "^7.22.9",