commit 25c401f64d8f99d44f46e1a52af361255f6323c2
parent 18b72da6577338c43b3f5cb274b082504091ae4b
Author: Rychart Redwerkz <redwerkz@users.noreply.github.com>
Date: Sun, 8 Jan 2023 23:18:55 +0100
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
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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>