Files
PhotonVision/photon-client/src/plugins/vuetify.js

24 lines
568 B
JavaScript
Raw Normal View History

import '@mdi/font/css/materialdesignicons.css';
2019-09-28 18:27:17 +03:00
import 'material-design-icons-iconfont/dist/material-design-icons.css'
2019-09-20 09:59:16 +03:00
import Vue from 'vue';
import Vuetify from 'vuetify/lib';
import theme from "../theme";
2019-10-29 23:58:06 +02:00
Vue.use(Vuetify, {});
2019-09-20 09:59:16 +03:00
// Although you *can* set up theming here, it's so frequently inappropriate that we do it in the markup
2019-09-20 09:59:16 +03:00
export default new Vuetify({
theme: {
themes: {
light: theme,
dark: theme,
}
},
breakpoint: {
thresholds: {
md: 1460,
lg: 2000,
},
}
2019-09-20 09:59:16 +03:00
});