vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 0a20ba0020a6220a032bc74435a637fd1963c6bd
parent 6541600af6a52f93febdd5912120f48aac87ec42
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:
Msrc/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 @@ -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>