We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 79a348e + 16d13cc commit 5f6c2a7Copy full SHA for 5f6c2a7
2 files changed
interface/src/components/ConnectionScreen.tsx
@@ -89,7 +89,7 @@ export function ConnectionScreen() {
89
const isChecking = state === "checking";
90
91
return (
92
- <div className="flex h-screen w-screen flex-col items-center justify-center bg-app">
+ <div className="flex h-screen w-full flex-col items-center justify-center bg-app overflow-hidden">
93
{/* Draggable titlebar region for Tauri */}
94
{IS_TAURI && (
95
<div
interface/src/ui/style/style.scss
@@ -16,6 +16,11 @@
16
17
}
18
19
+html, body {
20
+ overflow: hidden;
21
+ height: 100%;
22
+}
23
+
24
html {
25
font-size: 106.25%;
26
background: hsla(var(--color-app), 1);
0 commit comments