Stage one of migration complete, now need to pick through and implement individual changes

This commit is contained in:
2019-10-25 18:34:30 +00:00
parent d341c8b0d4
commit 16b925baac
5 changed files with 115 additions and 603 deletions

View File

@@ -1,19 +1,51 @@
/* Xeslint-disable */
// import Vue from "vue";
// import Vuetify from "vuetify";
// import "vuetify/dist/vuetify.min.css";
// Vue.use(Vuetify, {
// iconfont: "fa",
// theme: {
// primary: "#00205B", //Canucks dark blue
// secondary: "#00843D", //canucks green
// accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
// //error: "#b71c1c", //dark red, easy to read but not error-y enough possibly
// //accent: "#BD491A", //dark orangey red, more clarity, less friendly looking
// error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
// disabled: "#e0e0e0"
// }
// });
// v2.0
// src/plugins/vuetify.js
import Vue from "vue";
import Vuetify from "vuetify";
import "vuetify/dist/vuetify.min.css";
import Vuetify from "vuetify/lib";
Vue.use(Vuetify, {
iconfont: "fa",
theme: {
primary: "#00205B", //Canucks dark blue
secondary: "#00843D", //canucks green
// console.log(Vue);
// console.log(Vuetify);
// debugger;
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
//error: "#b71c1c", //dark red, easy to read but not error-y enough possibly
Vue.use(Vuetify);
//accent: "#BD491A", //dark orangey red, more clarity, less friendly looking
error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
export default new Vuetify({
icons: {
iconfont: "fa",
theme: {
primary: "#00205B", //Canucks dark blue
secondary: "#00843D", //canucks green
disabled: "#e0e0e0"
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
//error: "#b71c1c", //dark red, easy to read but not error-y enough possibly
//accent: "#BD491A", //dark orangey red, more clarity, less friendly looking
error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
disabled: "#e0e0e0"
}
}
});