Style tweeks

This commit is contained in:
Daniel Lautzenheiser
2022-09-07 12:15:43 -04:00
parent 0c5efd19d6
commit 6aaf16594b
25 changed files with 74 additions and 246 deletions

View File

@ -5,7 +5,6 @@ import { ThemeProvider } from 'emotion-theming';
import Header from './header';
import Footer from './footer';
import GlobalStyles from '../global-styles';
import theme from '../theme';
const LAYOUT_QUERY = graphql`
@ -32,7 +31,6 @@ const LAYOUT_QUERY = graphql`
export function LayoutTemplate({ children }) {
return (
<ThemeProvider theme={theme}>
<GlobalStyles />
{children}
</ThemeProvider>
);