improve loading performance of settings UI

This commit is contained in:
SethBurkart123
2024-03-27 23:54:53 +11:00
parent 073ba4d0d5
commit 31da7e8ded
5 changed files with 28 additions and 9 deletions
+13 -1
View File
@@ -4,11 +4,23 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BetterSEQTA+ Settings</title>
<style>
body {
padding: 0;
width: 384px;
height: 600px;
}
body.dark {
background-color: rgb(39 39 42);
}
</style>
</head>
<body style="width: 384px; height: 600px;">
<body>
<div id="ExtensionPopup">
</div>
<script type="module" src="./main.tsx"></script>
<script type="module" src="./dark.ts"></script>
</body>
</html>