aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/Layout.js2
-rw-r--r--configs/translations.js2
-rwxr-xr-xstyles/global/_reset.scss6
3 files changed, 9 insertions, 1 deletions
diff --git a/components/Layout.js b/components/Layout.js
index d5627e3..ac9534f 100644
--- a/components/Layout.js
+++ b/components/Layout.js
@@ -18,6 +18,8 @@ const Layout = ({
<section className={styles.layout +' '+ settings.theme}>
<Head>
<title>My Apps</title>
+ <meta name="viewport"
+ content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
</Head>
<main>
<div className="container">{children}</div>
diff --git a/configs/translations.js b/configs/translations.js
index a11c291..9e1d110 100644
--- a/configs/translations.js
+++ b/configs/translations.js
@@ -177,6 +177,7 @@ const translations = {
title: 'Título',
created: 'Creado',
modified: 'Modificado',
+ open_apps: 'Aplicaciones abiertas:',
Notes: 'Notas',
Settings: 'Ajustes',
mail_ver_subject: 'Verificación de su nueva cuenta en la aplicación My Apps.',
@@ -249,6 +250,7 @@ const translations = {
title: 'Titel',
created: 'Erstellt',
modified: 'Geändert',
+ open_apps: 'Anwendungen öffnen:',
Notes: 'Anmerkungen',
Settings: 'Einstellungen',
mail_ver_subject: 'Bestätigen Ihres neuen Kontos in der Anwendung „Meine Apps“.',
diff --git a/styles/global/_reset.scss b/styles/global/_reset.scss
index 0dc1326..a93ed5c 100755
--- a/styles/global/_reset.scss
+++ b/styles/global/_reset.scss
@@ -49,7 +49,11 @@ table {
border-collapse: collapse;
border-spacing: 0;
}
-
+textarea, input, button, select {
+ appearance: none;
+ -moz-appearance: none;
+ -webkit-appearance: none;
+}
html{
min-width: 320px;
background: white;