From a9a77b093023c18ba88f9a81f9f87d89001f4ca2 Mon Sep 17 00:00:00 2001 From: Izzy <360964+izzy@users.noreply.github.com> Date: Wed, 8 Feb 2023 20:40:21 +0100 Subject: [PATCH 1/4] Added connection status UI for websockets #32 --- chat.html | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 125 insertions(+), 1 deletion(-) diff --git a/chat.html b/chat.html index 7f7827e..2b22036 100644 --- a/chat.html +++ b/chat.html @@ -100,6 +100,19 @@ color: #950000; box-sizing: border-box; } + + #connection-status { + width: 100%; + position: fixed; + bottom: 0; + left: 0; + padding: 1rem; + font-size: 1.5rem; + font-weight: bold; + color: #410000; + background-color: #ff827c; + box-sizing: border-box; + }