Fix green screen

This commit is contained in:
Will Scullin 2022-05-28 09:44:53 -07:00
parent 2bd7fa59b7
commit 98d7ec718f
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
1 changed files with 11 additions and 0 deletions

View File

@ -9,5 +9,16 @@
</head>
<body>
<div id="app"></div>
<svg width="0" height="0" xmlns="http://www.w3.org/2000/svg">
<filter id="green">
<feColorMatrix
type="matrix"
values="0.0 0.0 0.0 0.0 0
0.0 1.0 0.0 0.0 0
0.0 0.0 0.5 0.0 0
0.0 0.0 0.0 1.0 0"
/>
</filter>
</svg>
<script src="dist/preact.bundle.js"></script>
</body>