disable browser resize magic, do viewport magic instead

This commit is contained in:
Brian S. Stephan 2020-12-08 18:47:02 -06:00
parent fbf6a81e0b
commit 49ab2befb6
2 changed files with 5 additions and 1 deletions

View File

@ -4,8 +4,11 @@ html {
}
body {
margin: 0;
text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.site-wrap {

View File

@ -1,5 +1,6 @@
<!doctype html>
<title>{{ title }}{% if title %} - {% endif %}{{ config.TITLE_SUFFIX }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename=user_style) }}">
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}">