Skip to content

Commit 7b5dcff

Browse files
fix(ui): prevent overflow on document root
1 parent 6927e95 commit 7b5dcff

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

invokeai/frontend/web/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
<link id="invoke-favicon" rel="icon" type="icon" href="assets/images/invoke-favicon.svg" />
1212
<style>
1313
html,
14-
body {
14+
body,
15+
#root {
1516
padding: 0;
1617
margin: 0;
18+
overflow: hidden;
1719
}
1820
</style>
1921
</head>
@@ -23,4 +25,4 @@
2325
<script type="module" src="/src/main.tsx"></script>
2426
</body>
2527

26-
</html>
28+
</html>

0 commit comments

Comments
 (0)