feat: prevent arbitrary zooming on mobile devices (#234)

pull/237/head
Shinigami 2022-11-29 17:27:35 +01:00 zatwierdzone przez GitHub
rodzic 5c5143d2c9
commit 091263ea05
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -69,6 +69,10 @@ export default defineNuxtConfig({
}, },
app: { app: {
keepalive: true, keepalive: true,
head: {
// Prevent arbitrary zooming on mobile devices
viewport: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no',
},
}, },
i18n: { i18n: {
locales: [ locales: [

Wyświetl plik

@ -123,3 +123,8 @@ html.dark {
html { html {
--at-apply: bg-base text-base; --at-apply: bg-base text-base;
} }
body {
/* Prevent arbitrary zooming on mobile devices */
touch-action: pan-x pan-y;
}