From 25c401f64d8f99d44f46e1a52af361255f6323c2 Mon Sep 17 00:00:00 2001
From: Rychart Redwerkz <redwerkz@users.noreply.github.com>
Date: Sun, 8 Jan 2023 23:18:55 +0100
Subject: [PATCH] Remove `shrink-to-fit=no`

This was a workaroud needed for iOS versions before 9.3 and is not part of the recommended viewport meta tag anymore.
https://www.scottohara.me/blog/2018/12/11/shrink-to-fit.html
---
 src/static/templates/admin/base.hbs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/static/templates/admin/base.hbs b/src/static/templates/admin/base.hbs
index 9b033b16..e296b114 100644
--- a/src/static/templates/admin/base.hbs
+++ b/src/static/templates/admin/base.hbs
@@ -2,7 +2,7 @@
 <html lang="en">
 <head>
     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
+    <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="robots" content="noindex,nofollow" />
     <link rel="icon" type="image/png" href="{{urlpath}}/vw_static/vaultwarden-favicon.png">
     <title>Vaultwarden Admin Panel</title>
-- 
GitLab