Recognize the role of Greptile/Sentry/Crowdin/Chromatic which give generous open source plans + some cleanup
22 lines
630 B
HTML
22 lines
630 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="images/icons/android/android-launchericon-48-48.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Twenty</title>
|
|
<style>
|
|
/* Reset margin and padding */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%; /* Ensure body takes full viewport height */
|
|
overflow: hidden; /* Prevents scrollbars from appearing */
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/options/index.tsx"></script>
|
|
</body>
|
|
</html> |