bx-1379-redesign #15

Merged
ksenia_mikhailova merged 124 commits from bx-1379-redesign into dev 2024-09-06 15:39:13 +03:00
2 changed files with 9 additions and 4 deletions
Showing only changes of commit ccd32c0e3e - Show all commits

View File

@ -9,9 +9,10 @@ body {
font-family: 'Montserrat';
user-select: none;
&:not(.notouch) {
canvas {
cursor: none;
}
}
}

View File

@ -34,6 +34,10 @@ router.beforeEach((to, from, next) => {
next();
});
if (navigator.maxTouchPoints == 0) {
document.body.classList += 'notouch'
}
const pinia = createPinia()
const app = createApp(App)