From 7ffa6e93b28f0fb3b2dbbb59d621b6c301047b8e Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Fri, 10 Dec 2021 21:43:56 -0500 Subject: [PATCH] [+] Fix slider color --- src/css/global.sass | 3 +++ src/main.ts | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/css/global.sass b/src/css/global.sass index b0baf45..8401e9e 100644 --- a/src/css/global.sass +++ b/src/css/global.sass @@ -149,3 +149,6 @@ body html height: 100% + +.vc-hue-slider__bar + background: linear-gradient(to right, red 0%, yellow 16.66%, lime 33.33%, aqua 50%,blue 66.66%,fuchsia 83.33%,red 100%) diff --git a/src/main.ts b/src/main.ts index c49a783..b40ec1c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,4 +4,6 @@ import router from './router' import {i18n} from "@/messages"; import '@fortawesome/fontawesome-free/css/all.min.css' -createApp(App).use(router).use(i18n).mount('#app') +const app = createApp(App).use(router).use(i18n) +// app.config.performance = true +app.mount('#app')