diff --git a/package-lock.json b/package-lock.json index 6a011b2..5e5d9da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "call-me", - "version": "1.2.95", + "version": "1.2.96", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "call-me", - "version": "1.2.95", + "version": "1.2.96", "license": "AGPLv3", "dependencies": { "@ngrok/ngrok": "1.7.0", diff --git a/package.json b/package.json index 30e3203..de2cf82 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "call-me", - "version": "1.2.95", + "version": "1.2.96", "description": "Your Go-To for Instant Video Calls", "author": "Miroslav Pejic - miroslav.pejic.85@gmail.com", "license": "AGPLv3", diff --git a/public/client.js b/public/client.js index 48cf181..f967900 100755 --- a/public/client.js +++ b/public/client.js @@ -2014,7 +2014,7 @@ function renderUserList() { if (isInActiveCall) { // Show hang-up button only if in active call (user has answered) - actionBtnEl.className = 'btn btn-custom btn-danger btn-s hangup-user-btn'; + actionBtnEl.className = 'btn btn-custom btn-danger btn-m hangup-user-btn'; actionBtnEl.innerHTML = ''; actionBtnEl.title = `Hang up call with ${user}`; actionBtnEl.addEventListener('click', (e) => { @@ -2028,7 +2028,7 @@ function renderUserList() { }); } else { // Show call button if not in active call - actionBtnEl.className = 'btn btn-custom btn-warning btn-s call-user-btn'; + actionBtnEl.className = 'btn btn-custom btn-warning btn-m call-user-btn'; actionBtnEl.innerHTML = ''; actionBtnEl.title = `Call ${user}`; actionBtnEl.addEventListener('click', (e) => { @@ -2044,7 +2044,7 @@ function renderUserList() { // Send file button const sendFileBtn = document.createElement('button'); - sendFileBtn.className = 'btn btn-custom btn-secondary btn-s'; + sendFileBtn.className = 'btn btn-custom btn-secondary btn-m'; sendFileBtn.innerHTML = ''; sendFileBtn.style.marginRight = '10px'; sendFileBtn.style.cursor = 'pointer';