This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this is a blend of settings found in two locations in GastbyJS documentation | |
// gatsby-remark-plugins section in MDX plugins page: | |
// https://www.gatsbyjs.org/docs/mdx/plugins/#gatsby-remark-plugins | |
// and gatsby-remark-autolink-headers page options section: | |
// https://www.gatsbyjs.org/packages/gatsby-remark-auto-headers/?=autolink%20headers#options | |
module.exports = { | |
plugins: [ | |
'gatsby-remark-autolink-headers', | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Smooth scrolling */ | |
@media (prefers-reduced-motion: no-preference) { | |
:root { | |
scroll-behavior: smooth; | |
} | |
} |