-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontend.html
21 lines (17 loc) · 1.04 KB
/
frontend.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html style="background: transparent !important;">
<head>
<title>Controller Pass Overlay</title>
<meta charset="UTF-8" />
<script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
<script type="module" src="./src/frontend.jsx"></script>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Import materialize.css -->
<link type="text/css" rel="stylesheet" href="./node_modules/@materializecss/materialize/dist/css/materialize.min.css" media="screen,projection"/>
</head>
<body style="background: transparent !important; color-scheme: light; display: contents;" class="m-5">
<div style="position: absolute; width: 21%; top: 25%; background: transparent;" class="scale-transition scale-out" id="panel"> </div>
<!-- JavaScript at end of body for optimized loading -->
<script type="module" src="./node_modules/@materializecss/materialize/dist/js/materialize.min.js"></script>
</body>
</html>