Replace type="text/css" with media="screen"
The type is actually no necessary for rel="stylesheet", and this stylesheet is only meant for screen interfaces, not the default “all”.
This commit is contained in:
parent
403c27f1e1
commit
25bf186a83
|
@ -8,7 +8,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ template "title" . }} — Camper</title>
|
||||
<link rel="stylesheet" type="text/css" href="/static/camper.css">
|
||||
<link rel="stylesheet" media="screen" href="/static/camper.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
|
Loading…
Reference in New Issue