Skip to content

Commit

Permalink
[mirotalkc2c] - add box-shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Aug 3, 2024
1 parent 6450155 commit 7a12622
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @license For private project or commercial purposes contact us at: [email protected] or purchase it directly via Code Canyon:
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
* @author Miroslav Pejic - [email protected]
* @version 1.1.25
* @version 1.1.26
*/

require('dotenv').config();
Expand Down
4 changes: 3 additions & 1 deletion frontend/css/client.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
--settings-width: 280px;
--chat-width: 320px;
--btn-hover-scale: scale(1.1);
--box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 1);
}

* {
Expand Down Expand Up @@ -58,10 +59,11 @@ body {
#waitingDiv {
min-width: 290px;
padding: 30px;
color: #ffffff;
border: var(--border);
border-radius: var(--border-radius);
background: var(--secondary-color);
color: #ffffff;
box-shadow: var(--box-shadow);
}

#waitingDiv h1,
Expand Down
4 changes: 3 additions & 1 deletion frontend/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
--primary-color: #202123;
--secondary-color: #45494c;
--text-color: #f5f5f5;
--box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 1);
}

body {
Expand All @@ -19,9 +20,10 @@ body {
form {
width: 240px;
padding: 10px 50px 40px 25px;
color: var(--text-color);
border-radius: 1rem;
background-color: var(--secondary-color);
color: var(--text-color);
box-shadow: var(--box-shadow);
}

form:focus-within {
Expand Down
2 changes: 1 addition & 1 deletion frontend/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @license For private project or commercial purposes contact us at: [email protected] or purchase it directly via Code Canyon:
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
* @author Miroslav Pejic - [email protected]
* @version 1.1.25
* @version 1.1.26
*/

const roomId = new URLSearchParams(window.location.search).get('room');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirotalkc2c",
"version": "1.1.25",
"version": "1.1.26",
"description": "A free WebRTC Cam-2-Cam browser-based video calls",
"main": "server.js",
"scripts": {
Expand Down

0 comments on commit 7a12622

Please sign in to comment.