fix: mobile device scale

Add `viewport` meta tag so site scales properly on mobile devices
This commit is contained in:
Evan Buss
2024-08-12 13:57:50 +00:00
parent 105a72c931
commit 3e3b662aa9
2 changed files with 13 additions and 8 deletions

View File

@@ -6,11 +6,15 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: "devcontainers" - package-ecosystem: "devcontainers"
directory: "/" directory: "/"
schedule: schedule:
interval: weekly interval: weekly
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"
directory: "/" directory: "/"
schedule: schedule:
interval: "weekly" interval: "weekly"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"

View File

@@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<title>{{block "title" .}}Kobo OPDS Proxy{{end}}</title> <title>{{block "title" .}}Kobo OPDS Proxy{{end}}</title>
<link rel="stylesheet" href="/static/style.css" /> <link rel="stylesheet" href="/static/style.css" />
</head> </head>