improve debug view
This commit is contained in:
parent
2cf7675588
commit
993d65aea3
1 changed files with 22 additions and 9 deletions
|
@ -1,12 +1,25 @@
|
||||||
<% if (it.debug) { %>
|
<% if (it.debug) { %>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
|
height: 100%;
|
||||||
font-family: 'Figtree', Arial, Helvetica, sans-serif;
|
font-family: 'Figtree', Arial, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
* {
|
* {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
}
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background-color: black;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" href="/style.css">
|
<link rel="stylesheet" href="/style.css">
|
||||||
|
<title>OpenGraph Debug Preview</title>
|
||||||
|
</head>
|
||||||
<% } %>
|
<% } %>
|
||||||
<%~ it.body %>
|
<%~ it.body %>
|
Loading…
Reference in a new issue