mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-25 01:41:40 +00:00
UI Redesign (#22)
* Rework UI into a new, responsive layout * Send two streams (only one is currently downscaled)
This commit is contained in:
committed by
GitHub
parent
aed92e7132
commit
8b46ad1cab
@@ -2,10 +2,22 @@ import '@mdi/font/css/materialdesignicons.css';
|
||||
import 'material-design-icons-iconfont/dist/material-design-icons.css'
|
||||
import Vue from 'vue';
|
||||
import Vuetify from 'vuetify/lib';
|
||||
import theme from "../theme";
|
||||
|
||||
Vue.use(Vuetify);
|
||||
Vue.use(Vuetify, {});
|
||||
|
||||
// Although you *can* set up theming here, it's so frequently inappropriate that we do it in the markup
|
||||
export default new Vuetify({
|
||||
icons: {}
|
||||
|
||||
theme: {
|
||||
themes: {
|
||||
light: theme,
|
||||
dark: theme,
|
||||
}
|
||||
},
|
||||
breakpoint: {
|
||||
thresholds: {
|
||||
md: 1460,
|
||||
lg: 2000,
|
||||
},
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user