Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…lfinance into feature/optimization
  • Loading branch information
Vaibhav sasulkar committed Sep 27, 2024
2 parents 002b769 + c585106 commit d469381
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 10 deletions.
8 changes: 5 additions & 3 deletions blocks/cards/support-contact-us-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
display: none;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li:last-child .cards-card-body ul {
.section.contact-us-card-wrapper .cards-wrapper .cards ul li:last-child >.cards-card-body >ul {
margin-bottom: 25px;
}

Expand All @@ -232,7 +232,9 @@
.section.support-contact-us-wrapper .wrappercreation-wrapper .wrappercreation .wrapper-creation-container .columns-wrapper .columns div div p>strong>a:has(sup) sup{
font-size: 14px;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul {
margin-bottom: 6px;
}
}

/* Download Piramal App Start */
Expand Down Expand Up @@ -299,7 +301,7 @@
@media screen and (min-width: 767px) and (max-width: 1024px) {
.section.contact-us-download-wrapper div:nth-child(2) {
/* top: 146px; */
left: 64px;
left: 58px;
}
.section.download-piramal-wrapper .default-content-wrapper>*:nth-child(n+1) {
display: flex;
Expand Down
5 changes: 4 additions & 1 deletion blocks/footer/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default async function decorate(block) {
try {
block.querySelectorAll("li,p").forEach(function (el) {
el.addEventListener("click", function (e) {
e.stopPropagation();
if (e.target.closest(".footer-section-first") || e.target.closest(".footer-section-second")) {
//console.log("click_text :: ", e.target.innerText);
//console.log("menu_category :: ", e.target.closest("ul")?.closest("li")?.querySelector("p")?.innerText);
Expand All @@ -34,6 +33,10 @@ export default async function decorate(block) {
console.warn(error);
}
}
if(e.target.href.includes('/modals/')){
return false;
}
e.stopPropagation();
})
});

Expand Down
4 changes: 4 additions & 0 deletions blocks/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
position: fixed;
} */

header {
display: block;
}

.header nav#nav {
box-sizing: border-box;
display: grid;
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
12 changes: 6 additions & 6 deletions styles/documents-required/documents-required.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
}
.section.documents-required-brown .accordion-group-wrapper .accordion-group .accordion:nth-child(2) details::before{
position: absolute;
background-image: url('/images/incomedoc.svg');
background-image: url('/images/income.svg');
left: 0;
top: 40px;
object-fit: contain;
Expand All @@ -178,7 +178,7 @@
}
.section.documents-required-brown .accordion-group-wrapper .accordion-group .accordion:nth-child(3) details::before{
position: absolute;
background-image: url('/images/propertydoc.svg');
background-image: url('/images/property.svg');
left: 0;
top: 40px;
object-fit: contain;
Expand All @@ -195,7 +195,7 @@
}
.section.documents-required-brown .accordion-group-wrapper .accordion-group .accordion:nth-child(4) details::before{
position: absolute;
background-image: url('/images/co-applicantsdoc.svg');
background-image: url('/images/coapplicants.svg');
left: 0;
top: 30px;
object-fit: contain;
Expand All @@ -212,7 +212,7 @@
}
.section.documents-required-brown .accordion-group-wrapper .accordion-group .accordion:nth-child(5) details::before{
position: absolute;
background-image: url('/images/photodoc.svg');
background-image: url('/images/photodocm.svg');
left: 0;
top: 30px;
object-fit: contain;
Expand Down Expand Up @@ -416,11 +416,11 @@ table {
}

.section.documents-required-brown.document-required-accordion-img-swap .accordion-group-wrapper .accordion-group .accordion:nth-last-child(2) details::before{
background-image: url('/images/co-applicantsdoc.svg');
background-image: url('/images/coapplicants.svg');
}

.section.documents-required-brown.document-required-accordion-img-swap .accordion-group-wrapper .accordion-group .accordion:last-child details::before{
background-image: url('/images/photodoc.svg');
background-image: url('/images/photodocm.svg');
}

.section.documents-required-brown.document-required-accordion-img table:nth-child(2) > tbody > tr> th:nth-child(3),
Expand Down
3 changes: 3 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -999,8 +999,11 @@ body.overlay-active {
}

/* header css */


header {
height: 112px;
display: none;
}

@media screen and (width <= 1200px) {
Expand Down

0 comments on commit d469381

Please sign in to comment.