commit da9605f2d2ec127c1a800d49b435df82f7e7af7a
parent 7030de32d5ed1396e06bb863b943c966331b8e5a
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>