fix(ui): prevent overflow on document root

This commit is contained in:
psychedelicious
2025-02-13 07:31:55 +11:00
parent 6927e95444
commit 7b5dcffb3f

View File

@@ -11,9 +11,11 @@
<link id="invoke-favicon" rel="icon" type="icon" href="assets/images/invoke-favicon.svg" />
<style>
html,
body {
body,
#root {
padding: 0;
margin: 0;
overflow: hidden;
}
</style>
</head>
@@ -23,4 +25,4 @@
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
</html>