2018-07-25 07:47:26 -04:00
|
|
|
// Make scroll behavior of internal links smooth
|
|
|
|
exports.onClientEntry = () => {
|
2018-08-23 17:58:38 -04:00
|
|
|
const SmoothScroll = require('smooth-scroll');
|
2018-07-25 07:47:26 -04:00
|
|
|
new SmoothScroll('a[href*="#"]', {
|
|
|
|
offset() {
|
|
|
|
return document.querySelector('#header').offsetHeight;
|
2018-08-07 14:46:54 -06:00
|
|
|
},
|
2018-07-25 07:47:26 -04:00
|
|
|
});
|
|
|
|
};
|