mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 03:43:02 +03:00
eb78be6c61
fixes - #5201 https://github.com/twentyhq/twenty/assets/13139771/871019c6-6456-46b4-95dd-07ffb33eb4fd --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
22 lines
624 B
HTML
22 lines
624 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/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> |