Disable grid layout in test.html

This commit is contained in:
Daniel Imms
2025-12-26 10:38:39 -08:00
parent 8eab98b78d
commit e6ad59b1b1
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -9,7 +9,11 @@ body {
grid-template-rows: 24px 1fr;
}
/* Top banner */
body:not(#test) {
height: initial;
display: initial;
}
#banner {
background: #161716;
display: flex;
+1 -1
View File
@@ -5,7 +5,7 @@
<link rel="stylesheet" href="/xterm.css" />
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<body id="test">
<div id="terminal-container"></div>
<script src="/dist/client-bundle.js" defer></script>
</body>