[+] Fix slider color

This commit is contained in:
Hykilpikonna
2021-12-10 21:43:56 -05:00
parent c7f39a91cd
commit 7ffa6e93b2
2 changed files with 6 additions and 1 deletions
+3
View File
@@ -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%)
+3 -1
View File
@@ -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')