From 628337022ea360ecc88aa6b21fa345d4ced58ebd Mon Sep 17 00:00:00 2001
From: Midhun Suresh <midhunr@element.io>
Date: Sat, 1 Jan 2022 11:39:18 +0530
Subject: [PATCH] Add rudimentary styling

---
 index.html    |  1 +
 src/style.css | 20 +++++++++++++-------
 2 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/index.html b/index.html
index 00f5a61..cb46096 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
   <head>
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="favicon.svg" />
+    <link rel="stylesheet" href="src/style.css">
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title>Vite App</title>
   </head>
diff --git a/src/style.css b/src/style.css
index 852de7a..27b94c9 100644
--- a/src/style.css
+++ b/src/style.css
@@ -1,8 +1,14 @@
-#app {
-  font-family: Avenir, Helvetica, Arial, sans-serif;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  text-align: center;
-  color: #2c3e50;
-  margin-top: 60px;
+#chatterbox {
+    position: absolute;
+    width: 500px;
+    bottom: 0;
+    right: 0;
+}
+
+#chatterbox .Timeline {
+    height: 500px;
+}
+
+body {
+    background-color: #205a634d;
 }
-- 
GitLab