From f7f1f5bf770af11d23a118f654e89011264dc8ed Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Thu, 19 Sep 2024 20:02:09 +0200 Subject: [PATCH] [call-me] - update dep, fix ui --- package.json | 4 +- public/index.html | 93 ++++++++++++++++++++++------------------------- public/style.css | 32 ++++++++++++++-- 3 files changed, 74 insertions(+), 55 deletions(-) diff --git a/package.json b/package.json index ae47b57..51e0e43 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "call-me", - "version": "1.0.8", + "version": "1.0.9", "description": "Your Go-To for Instant Video Calls", "author": "Miroslav Pejic - miroslav.pejic.85@gmail.com", "license": "AGPLv3", @@ -26,7 +26,7 @@ "swagger-ui-express": "5.0.1" }, "devDependencies": { - "nodemon": "^3.1.4", + "nodemon": "^3.1.6", "prettier": "3.3.3" } } diff --git a/public/index.html b/public/index.html index fd0cc2c..a97fc08 100755 --- a/public/index.html +++ b/public/index.html @@ -85,57 +85,50 @@ -
-
- -
- - -
- - -
-
-
- - -
- - - - - - +
+ +
+ + +
+ + +
+
+
+ +
+ + + + + +
diff --git a/public/style.css b/public/style.css index f64eb14..a080ece 100644 --- a/public/style.css +++ b/public/style.css @@ -14,14 +14,21 @@ html, body { + top: 0; + bottom: 0; width: 100%; height: 100%; - margin: 0; - padding: 0; - overflow: hidden; /* Prevent scrolling if the image is larger than the viewport */ + margin: auto; + overflow: auto; background: url('background.jpg') center/cover no-repeat; /* Consolidate background properties */ } +/* Room */ +#roomPage { + position: absolute; + display: none; +} + /* Home Sign in */ #signInPage { position: absolute; @@ -150,3 +157,22 @@ input { color: #fff !important; border: none !important; } + +/* Webkit-Scrollbar Styles */ +::-webkit-scrollbar { + width: 10px; +} + +::-webkit-scrollbar-thumb { + background: radial-gradient(#333, #000000); + border-radius: 5px; + cursor: pointer; +} + +::-webkit-scrollbar-thumb:hover { + background-color: radial-gradient(#333, #000000); +} + +::-webkit-scrollbar-track { + background: #1a1b1f; +}