Skip to content

Commit 3077692

Browse files
committed
Bugfix
1 parent 8676a39 commit 3077692

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

renderer-src/app.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ body {
5555
height: 100%;
5656
}
5757

58+
.body-container {
59+
display: contents;
60+
width: 100%;
61+
height: 100%;
62+
}
63+
5864
.bottom-bar-button-flash {
5965
animation: 0.75s infinite alternate bottom-bar-button-flash-keyframes;
6066
}

renderer-src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
%sveltekit.head%
1010
</head>
1111
<body>
12-
<div style="display: contents">%sveltekit.body%</div>
12+
<div class="body-container">%sveltekit.body%</div>
1313
</body>
1414
</html>

0 commit comments

Comments
 (0)