fix 'max-width' not working

This commit is contained in:
symant233 2019-12-11 18:35:53 +08:00
parent ab2dff4859
commit 05eaa9eebc
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,7 @@
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes, viewport-fit=cover" />
<title>{TITLE}</title>
<style>
{STYLES}

View File

@ -72,4 +72,10 @@ html, body {
nav {
display: none;
}
}
@media only screen and (max-device-width: 855px) {
nav {
display: none;
}
}