summaryrefslogtreecommitdiff
path: root/src/components/about-entry.js
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2019-03-12 13:09:19 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2019-03-12 13:09:19 -0700
commit8067c58cd42c100ad15e1c907875896bfaf3a086 (patch)
tree523d1696ca044d47741dd86c5592dd044502a1d6 /src/components/about-entry.js
parent16d2a38f0ad2e0f27e1aa4feb1118a9a1c192af3 (diff)
Use global list stying
Diffstat (limited to 'src/components/about-entry.js')
-rw-r--r--src/components/about-entry.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/components/about-entry.js b/src/components/about-entry.js
index f5228e0..51aaf10 100644
--- a/src/components/about-entry.js
+++ b/src/components/about-entry.js
@@ -2,16 +2,8 @@ import React from 'react'
import { css } from '@emotion/core'
import { margins } from './globals'
-const { md, lg } = margins
-
const aboutListStyle = css`
- margin: ${lg}px 0 0 0;
- & ul {
- list-style-type: none;
- & li {
- margin: ${md}px 0;
- }
- }
+ margin: ${margins.lg}px 0 0 0;
`
export const AboutEntry = ({ header, listItems }) => (