We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea8418c commit abeaed2Copy full SHA for abeaed2
1 file changed
src/components/Header.astro
@@ -98,7 +98,7 @@ const items = [
98
*/
99
100
const currentLI = document.querySelector<HTMLElement>(
101
- ".s-header__nav a[href*=" + sectionId + "]"
+ ".s-header__nav a[href*=" + sectionId + "]",
102
)?.parentElement as HTMLElement;
103
104
//console.log(currentLI);
@@ -408,8 +408,8 @@ const items = [
408
visibility: visible;
409
-webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
410
transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
411
- -webkit-transition-delay: 0.5s;
412
- transition-delay: 0.5s;
+ -webkit-transition-delay: 0.1s;
+ transition-delay: 0.1s;
413
}
414
415
0 commit comments