1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-06-30 21:52:06 +02:00
docs/gatsby-browser.js

11 lines
315 B
JavaScript
Raw Normal View History

// import global branding styles
import './src/styles/global.scss'
2018-11-07 12:24:53 +01:00
2018-11-08 17:33:56 +01:00
// import prismjs syntax highlighting styles
2018-11-09 22:14:20 +01:00
import 'prismjs/themes/prism-okaidia.css'
2018-11-08 17:33:56 +01:00
// IntersectionObserver polyfill for gatsby-image (Safari, IE)
if (typeof window.IntersectionObserver === 'undefined') {
import('intersection-observer')
}