mirror of
https://github.com/BillyOutlast/posthog.com.git
synced 2026-02-04 03:11:21 +01:00
* Setup tailwind and postcss with gatsby * Switch image to inline-block and remove max-width on container * Add missing space for enterprise email link * Use initial styling for ordered & unordered lists * Add correct style types for ul/ol elements * Fix block level images in contributors grid * Use scss for contributor faces instead of utility classes
14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
/**
|
|
* Implement Gatsby's Browser APIs in this file.
|
|
*
|
|
* See: https://www.gatsbyjs.org/docs/browser-apis/
|
|
*/
|
|
|
|
import 'prismjs/themes/prism-okaidia.css'
|
|
import { wrapElement, initKea } from './kea'
|
|
import './src/styles/global.css'
|
|
|
|
initKea(false)
|
|
|
|
export const wrapRootElement = wrapElement
|