diff --git a/theme/src/components/head.js b/theme/src/components/head.js index d57e6eac..e8dacbf2 100644 --- a/theme/src/components/head.js +++ b/theme/src/components/head.js @@ -15,6 +15,12 @@ function Head(props) { + {siteMetadata.primerTracking ? ( + <> + + + + ) : null} ) } diff --git a/theme/src/components/live-code.js b/theme/src/components/live-code.js index a93d13f6..8062033d 100644 --- a/theme/src/components/live-code.js +++ b/theme/src/components/live-code.js @@ -106,15 +106,15 @@ function LiveCode({code, language, highlight, noinline, metastring}) { onChange={handleChange} theme={githubTheme} ignoreTabKey={true} - padding={theme.space[3]} + padding={theme?.space[3]} style={{ - fontFamily: theme.fonts.mono, + fontFamily: theme?.fonts.mono, fontSize: '85%', - borderBottomLeftRadius: theme.radii[2], - borderBottomRightRadius: theme.radii[2], + borderBottomLeftRadius: theme?.radii[2], + borderBottomRightRadius: theme?.radii[2], border: '1px solid', borderTop: 0, - borderColor: theme.colors.border.default, + borderColor: theme?.colors.border.default, }} />