From 4dceecc693244fa0dd2a634b8476b89e2fff8040 Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 17:14:56 +0530 Subject: [PATCH 1/6] branch locator banner css added in common --- styles/styles.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/styles/styles.css b/styles/styles.css index f087da5491..a272e56c8e 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -1023,10 +1023,28 @@ footer { min-height: 1225px; } +.section.branch-locater-banner .default-content-wrapper { + min-height: 152px; +} + +.section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { + width: 124px; + height: 120px; +} + @media screen and (max-width:767px) { footer { min-height: 1386px; } + + .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { + width: 72px; + height: 72px; + } + + .section.branch-locater-banner .default-content-wrapper { + min-height: 104px; + } } footer:has(.neeyat-footer) { From 854429b02e2bbf429d73ce96fbd9734624a70e60 Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 17:20:52 +0530 Subject: [PATCH 2/6] remove banner style from common --- styles/styles.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/styles/styles.css b/styles/styles.css index a272e56c8e..319bf3dec8 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -1023,10 +1023,6 @@ footer { min-height: 1225px; } -.section.branch-locater-banner .default-content-wrapper { - min-height: 152px; -} - .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 124px; height: 120px; @@ -1041,10 +1037,6 @@ footer { width: 72px; height: 72px; } - - .section.branch-locater-banner .default-content-wrapper { - min-height: 104px; - } } footer:has(.neeyat-footer) { From d4370cd16a266044ce0f7eb367656791d26d24f4 Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 18:24:08 +0530 Subject: [PATCH 3/6] add banner height in common --- styles/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles/styles.css b/styles/styles.css index 319bf3dec8..b912d4bf1f 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -1023,6 +1023,10 @@ footer { min-height: 1225px; } +.section.branch-locater-banner .default-content-wrapper { + min-height: 152px; +} + .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 124px; height: 120px; @@ -1033,6 +1037,10 @@ footer { min-height: 1386px; } + .section.branch-locater-banner .default-content-wrapper { + min-height: 104px; + } + .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 72px; height: 72px; From efde43a716008828b970b329b16fafeda710f6fe Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 18:31:04 +0530 Subject: [PATCH 4/6] done --- styles/styles.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/styles/styles.css b/styles/styles.css index b912d4bf1f..5f1287a26d 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -1027,6 +1027,10 @@ footer { min-height: 152px; } +.section.branch-locater-banner { + min-height: 248px; +} + .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 124px; height: 120px; @@ -1041,6 +1045,10 @@ footer { min-height: 104px; } + .section.branch-locater-banner { + min-height: 190px; + } + .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 72px; height: 72px; @@ -1061,4 +1069,8 @@ footer:has(.neeyat-footer) { footer:has(.neeyat-footer) { min-height: 100%; } + + .section.branch-locater-banner { + min-height: 242px; + } } \ No newline at end of file From 59715e74519afd901acb3d60e0ce39c6e617db9a Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 18:37:26 +0530 Subject: [PATCH 5/6] remove css form common --- styles/styles.css | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/styles/styles.css b/styles/styles.css index 5f1287a26d..319bf3dec8 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -1023,14 +1023,6 @@ footer { min-height: 1225px; } -.section.branch-locater-banner .default-content-wrapper { - min-height: 152px; -} - -.section.branch-locater-banner { - min-height: 248px; -} - .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 124px; height: 120px; @@ -1041,14 +1033,6 @@ footer { min-height: 1386px; } - .section.branch-locater-banner .default-content-wrapper { - min-height: 104px; - } - - .section.branch-locater-banner { - min-height: 190px; - } - .section.branch-locater-banner .default-content-wrapper p:nth-child(3)>picture>img { width: 72px; height: 72px; @@ -1069,8 +1053,4 @@ footer:has(.neeyat-footer) { footer:has(.neeyat-footer) { min-height: 100%; } - - .section.branch-locater-banner { - min-height: 242px; - } } \ No newline at end of file From 121ea311d61157e74f6edf8aa5c57bba4a532512 Mon Sep 17 00:00:00 2001 From: Vaibhav sasulkar Date: Mon, 23 Sep 2024 18:51:27 +0530 Subject: [PATCH 6/6] add map style --- blocks/branchlocator/branchlocator.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/branchlocator/branchlocator.css b/blocks/branchlocator/branchlocator.css index 08d5e41faa..9eac010c13 100644 --- a/blocks/branchlocator/branchlocator.css +++ b/blocks/branchlocator/branchlocator.css @@ -447,7 +447,7 @@ .section.branchlocator-map .container .map-branchinfo-wrapper .map-container{ width: 100%; - max-height: 284px; + height: 284px; border-radius: 8px; }