bx-1379-redesign #15
|
@ -9,9 +9,10 @@ body {
|
||||||
font-family: 'Montserrat';
|
font-family: 'Montserrat';
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
|
&:not(.notouch) {
|
||||||
canvas {
|
canvas {
|
||||||
cursor: none;
|
cursor: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,10 @@ router.beforeEach((to, from, next) => {
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (navigator.maxTouchPoints == 0) {
|
||||||
|
document.body.classList += 'notouch'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const pinia = createPinia()
|
const pinia = createPinia()
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
|
Loading…
Reference in New Issue