UI Tweaks and bug fixes

This commit is contained in:
Daniel Lautzenheiser
2022-09-22 18:09:57 -04:00
parent 613a1cec76
commit 1aeffbf9c4
83 changed files with 171 additions and 113 deletions

View File

@ -15,7 +15,7 @@
"license": "MIT",
"dependencies": {
"@emotion/cache": "11.10.3",
"@emotion/core": "11.0.0",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"dayjs": "^1.8.23",
"emotion-theming": "^10.0.27",

View File

@ -2,7 +2,7 @@ import React from 'react';
import CMS from 'netlify-cms-app';
import dayjs from 'dayjs';
import Prism from 'prismjs';
import { CacheProvider } from '@emotion/core';
import { CacheProvider } from '@emotion/react';
import createCache from '@emotion/cache';
import BlogPostTemplate from '../components/blog-post-template';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Container from './container';
import Markdown from './markdown';

View File

@ -1,4 +1,4 @@
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import theme from '../theme';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Markdownify from './markdownify';
import PageHero from './page-hero';

View File

@ -1,5 +1,5 @@
import styled from '@emotion/styled';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import { mq } from '../utils';
import theme from '../theme';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
function EditLink({ collection, filename }) {
return (

View File

@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';
import { Link, graphql, StaticQuery } from 'gatsby';
import styled from '@emotion/styled';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import GitHubButton from 'react-github-btn';
import Container from './container';

View File

@ -1,6 +1,6 @@
import React from 'react';
import styled from '@emotion/styled';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import theme from '../theme';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Container from './container';
import theme from '../theme';

View File

@ -1,7 +1,7 @@
import React from 'react';
import moment from 'moment';
import styled from '@emotion/styled';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Markdownify from '../components/markdownify';
import theme from '../theme';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import styled from '@emotion/styled';
import Page from './page';

View File

@ -1,5 +1,5 @@
import React from 'react';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Container from './container';
import Release from './release';

View File

@ -1,7 +1,7 @@
import React from 'react';
import { Helmet } from 'react-helmet';
import { Link, graphql } from 'gatsby';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Layout from '../components/layout';
import Container from '../components/container';

View File

@ -1,7 +1,7 @@
import React from 'react';
import { graphql } from 'gatsby';
import styled from '@emotion/styled';
import { css } from '@emotion/core';
import { css } from '@emotion/react';
import Layout from '../components/layout';
import Markdownify from '../components/markdownify';