From aea9166ad534590e52306789d926f400d5009bab Mon Sep 17 00:00:00 2001
From: Alan Buxey <alan.buxey@gmail.com>
Date: Tue, 9 May 2017 15:05:42 +0100
Subject: [PATCH] adjustment of the meta viewport

for better mobile/small form factor support (eg when using landscape) - don't specify the device-width etc
(see e.g. https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html )
---
 templates/base.twig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/base.twig b/templates/base.twig
index 1edd9ca4b..249cb2e23 100644
--- a/templates/base.twig
+++ b/templates/base.twig
@@ -2,7 +2,7 @@
 <html>
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
+    <meta name="viewport" content="initial-scale=1.0">
     <title>{{ pagetitle }}</title>
     <link rel="stylesheet" type="text/css" href="/{{ baseurlpath }}resources/default.css">
     <link rel="icon" type="image/icon" href="/{{ baseurlpath }}resources/icons/favicon.ico">
-- 
GitLab