changeset 37:cfd1f92c264f

dont use vh
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Nov 2024 20:01:48 -0700
parents 4e82d8f4dfc2
children 436216d17a1b
files src/chat.css src/site.css
diffstat 2 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/chat.css	Tue Nov 12 17:26:31 2024 -0700
+++ b/src/chat.css	Tue Nov 12 20:01:48 2024 -0700
@@ -1,7 +1,15 @@
+body {
+	position: fixed;
+	top: 0;
+	bottom: 0;
+	left: 0;
+	right: 0;
+}
+
 div[content] {
 	margin-bottom: 0;
 	display: flex;
-	height: calc(100vh - 32px);
+	height: calc(100% - 32px);
 }
 
 div[chats] {
--- a/src/site.css	Tue Nov 12 17:26:31 2024 -0700
+++ b/src/site.css	Tue Nov 12 20:01:48 2024 -0700
@@ -1,5 +1,5 @@
 * {
- 	box-sizing: border-box;
+	box-sizing: border-box;
 }
 
 body {