From f73dfcf4f1db2f9f30ef635d09c2747728ef4be0 Mon Sep 17 00:00:00 2001 From: Pankaj Saini <124437912+pankajsaini1@users.noreply.github.com> Date: Fri, 4 Oct 2024 15:37:31 +0530 Subject: [PATCH 1/6] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4089142b..0565a952 100644 --- a/index.html +++ b/index.html @@ -1224,7 +1224,7 @@ - + From e702b43fcf8a104f26df195cc789f6edbe8b1170 Mon Sep 17 00:00:00 2001 From: SHRUTI DALVI Date: Fri, 4 Oct 2024 17:21:03 +0530 Subject: [PATCH 2/6] Fixed text overlap issue --- assets/css/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/style.css b/assets/css/style.css index ac4a3cc1..f23196fc 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -793,6 +793,7 @@ body.dark-mode .dropdown-menu-item:hover { /* border: 1px solid black; */ width: 55%; display: flex; + margin-left: 8rem; flex-direction: column; align-items: start; } @@ -843,6 +844,7 @@ body.dark-mode .dropdown-menu-item:hover { color: var(--chinese-violet); font-size: 2rem; margin-top: 1.5rem; + padding: 10px 15px; border-radius: 10px; transition: all 1s ease; From 495c51783e3322e05535375490bc45ed8b75b8b1 Mon Sep 17 00:00:00 2001 From: shivam8112005 Date: Fri, 4 Oct 2024 20:48:22 +0530 Subject: [PATCH 3/6] fixed collapsing icons in footer --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4089142b..b7f7461e 100644 --- a/index.html +++ b/index.html @@ -3739,7 +3739,7 @@

Stay Connected

-
+
From b8f10cd28df4969b3210f466691aaf4fb85fce13 Mon Sep 17 00:00:00 2001 From: PREM PAWAR Date: Fri, 4 Oct 2024 20:56:29 +0530 Subject: [PATCH 4/6] logout Style --- logout.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/logout.css b/logout.css index ee8800a8..0fdf6632 100644 --- a/logout.css +++ b/logout.css @@ -16,7 +16,7 @@ .modal-box { background-color: rgb(246, 244, 244); border: 2px solid rgb(250, 43, 77); - max-width: 450px; + width: 100%; padding: 30px 30px; text-align: center; margin-right: 500px; @@ -25,7 +25,7 @@ } .logout-que { - margin: 30px 0; + margin: 20px 0; font-size: 14px; } @@ -46,6 +46,10 @@ background-color: rgb(147, 237, 147); color: black; } +.cancel-logout-btn:hover { + background-color: rgb(1, 150, 1); + color: black; +} .out-logout-btn { background-color: red; From 172c22ec4aade0d49ccb5b76347a5dddd353e067 Mon Sep 17 00:00:00 2001 From: Jay-1409 Date: Fri, 4 Oct 2024 21:02:21 +0530 Subject: [PATCH 5/6] readibility issues fixed --- assets/css/style.css | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index ac4a3cc1..0fe59fd3 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1450,7 +1450,7 @@ body.dark-mode .pricing-card button{ background-color: transparent; border: 1px solid #c36969; border-radius: 8px; - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); + /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */ font-family: Montserrat; transition: background-color 0.3s, border-color 0.3s, color 0.3s; } diff --git a/index.html b/index.html index 4089142b..e3bcf1e1 100644 --- a/index.html +++ b/index.html @@ -3080,7 +3080,7 @@

CONTACT US!

-

Get in touch

+

Get in touch

From 0332e951f4465d8c5fc3ba9fd23cb46d79fd1543 Mon Sep 17 00:00:00 2001 From: Mohd Rahmath Date: Fri, 4 Oct 2024 22:40:17 +0530 Subject: [PATCH 6/6] refresher refresh on click fix --- assets/js/refresher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/refresher.js b/assets/js/refresher.js index bb3e18d2..bd7e4da9 100644 --- a/assets/js/refresher.js +++ b/assets/js/refresher.js @@ -1,7 +1,7 @@ document.addEventListener('DOMContentLoaded', function() { const caduceus = document.getElementById('caduceus'); - caduceus.addEventListener('mouseover', function() { + caduceus.addEventListener('click', function() { location.reload(); }); }); \ No newline at end of file