Commit a3f8db7b by Arjun Jhukal

updated the fixes

parent 50b21f92
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -137,19 +137,22 @@ ...@@ -137,19 +137,22 @@
entries.forEach((entry) => { entries.forEach((entry) => {
if (entry.isIntersecting) { if (entry.isIntersecting) {
$(".toc h6").show(); $(".toc h6").show();
console.log("is intersecting")
} else { } else {
$(".toc h6").hide(); $(".toc h6").hide();
console.log("is not intersecting")
} }
}); });
}, },
{ {
threshold: 0.1, threshold: 0.3,
}, },
); );
const sections = [ const sections = [
document.querySelector(".BLOGDETAIL-LIST-ITEM-SECTION"), document.querySelector(".BLOGDETAIL-LIST-ITEM-SECTION"),
document.querySelector(".BLOGLISTING-LIST-ITEM-SECTION"), document.querySelector(".BLOGLISTING-LIST-ITEM-SECTION"),
document.querySelector(".case-study-general"),
]; ];
sections.length && sections.length &&
sections.forEach((section) => { sections.forEach((section) => {
......
...@@ -652,8 +652,8 @@ ul { ...@@ -652,8 +652,8 @@ ul {
.fixed-button-wrapper { .fixed-button-wrapper {
position: fixed; position: fixed;
z-index: 99; z-index: 99;
bottom: 20px; bottom: 80px;
right: 2%; right: 8px;
} }
#return-to-top { #return-to-top {
......
...@@ -398,7 +398,7 @@ ...@@ -398,7 +398,7 @@
transform: translateX(-50%); transform: translateX(-50%);
span { span {
font-size: 24px; font-size: 20px;
line-height: 180%; line-height: 180%;
font-weight: 800; font-weight: 800;
letter-spacing: 0px; letter-spacing: 0px;
...@@ -421,6 +421,12 @@ ...@@ -421,6 +421,12 @@
} }
} }
} }
.scroll-animate {
span {
font-size: 24px;
}
}
} }
@media (min-width:768px) { @media (min-width:768px) {
...@@ -431,7 +437,7 @@ ...@@ -431,7 +437,7 @@
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
.footer-link-wrapper.location-wrapper { .footer-link-wrapper.location-wrapper {
height: 100%; // height: 100%;
grid-column: 1/-1; grid-column: 1/-1;
} }
} }
......
.case-study-filter { .case-study-filter {
padding-bottom: 0 !important;
ul { ul {
&.nav { &.nav {
margin-bottom: 0; margin-bottom: 0;
// gap: 44px; // gap: 44px;
border-top: 1px solid rgba(255, 255, 255, 0.2); border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 0 !important; padding: 0 !important;
overflow: hidden !important;
li { li {
list-style-type: none; list-style-type: none;
margin-bottom: 0 !important;
a, a,
button { button {
......
...@@ -43,7 +43,10 @@ ...@@ -43,7 +43,10 @@
} }
.case-study-general-content { .case-study-general-content {
h2 {
h2,
h3,
h4 {
margin-bottom: 16px; margin-bottom: 16px;
&:not(:first-child) { &:not(:first-child) {
...@@ -51,6 +54,8 @@ ...@@ -51,6 +54,8 @@
} }
} }
p, p,
ul, ul,
ol, ol,
...@@ -165,7 +170,9 @@ ...@@ -165,7 +170,9 @@
padding-left: 24px; padding-left: 24px;
border-left: 1px solid rgba(0, 0, 0, 0.1); border-left: 1px solid rgba(0, 0, 0, 0.1);
h2 { h2,
h3,
h4 {
&:not(:first-child) { &:not(:first-child) {
margin-top: 72px; margin-top: 72px;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment