From 8cbfdc58b9c5c18c2873b80889684f42d4ea2dfb Mon Sep 17 00:00:00 2001 From: Nick Van Doorn Date: Fri, 5 Apr 2019 15:51:04 -0700 Subject: Remove injected css --- src/pages/about.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/pages/about.js b/src/pages/about.js index 27c193f..af07de0 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -1,4 +1,5 @@ import React from 'react' +import { css } from '@emotion/core' import { FontAwesome } from '../components/font-awesome' import { faHeart, @@ -9,7 +10,6 @@ import { } from '@fortawesome/free-solid-svg-icons' import Layout from '../components/layout' -import { margins } from '../components/globals' import { AboutEntry } from '../components/about-entry' import { Personal } from '../components/personal' import { SplitContainer } from '../components/split-container' @@ -99,13 +99,17 @@ export default () => ( -
+
+ css` + & h2 { + margin: 0 0 ${margins.md}px 0; + } + ` + } + > {aboutLists.map((entry, i) => ( - + ))}
-- cgit v1.2.3