chore(deps): lock file maintenance (#3636)
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { graphql, StaticQuery } from 'gatsby';
|
||||
import { ThemeProvider } from 'emotion-theming';
|
||||
import Header from './header';
|
||||
|
@ -4,7 +4,7 @@ import styled from '@emotion/styled';
|
||||
import theme from '../theme';
|
||||
|
||||
const StyledMarkdown = styled.div`
|
||||
> :first-child {
|
||||
> :first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
> :last-child {
|
||||
@ -81,7 +81,7 @@ const StyledMarkdown = styled.div`
|
||||
}
|
||||
|
||||
tbody tr {
|
||||
&:nth-child(odd) {
|
||||
&:nth-of-type(odd) {
|
||||
background: #fdfdfd;
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
|
||||
const TwitterMeta = ({ title, description, image, imageAlt }) => (
|
||||
<Helmet>
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { Link, graphql } from 'gatsby';
|
||||
import { css } from '@emotion/core';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { graphql } from 'gatsby';
|
||||
|
||||
import Layout from '../components/layout';
|
||||
@ -20,6 +20,7 @@ export const pageQuery = graphql`
|
||||
query communityPage {
|
||||
markdownRemark(fileAbsolutePath: { regex: "/community/" }) {
|
||||
frontmatter {
|
||||
title
|
||||
headline
|
||||
subhead
|
||||
sections {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { graphql } from 'gatsby';
|
||||
import { trimStart, trimEnd } from 'lodash';
|
||||
import { css } from '@emotion/core';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { graphql } from 'gatsby';
|
||||
import 'prismjs/themes/prism-tomorrow.css';
|
||||
|
||||
|
Reference in New Issue
Block a user