2019-09-28 02:17:18 +03:00
|
|
|
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';
|
2020-07-13 19:34:31 -07:00
|
|
|
import theme from "../theme";
|
2019-10-29 23:58:06 +02:00
|
|
|
|
2020-07-13 19:34:31 -07:00
|
|
|
Vue.use(Vuetify, {});
|
2019-09-20 09:59:16 +03:00
|
|
|
|
2020-07-13 19:34:31 -07: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({
|
2020-07-13 19:34:31 -07:00
|
|
|
theme: {
|
|
|
|
|
themes: {
|
|
|
|
|
light: theme,
|
|
|
|
|
dark: theme,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
breakpoint: {
|
|
|
|
|
thresholds: {
|
|
|
|
|
md: 1460,
|
|
|
|
|
lg: 2000,
|
|
|
|
|
},
|
|
|
|
|
}
|
2019-09-20 09:59:16 +03:00
|
|
|
});
|