diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-19 23:54:14 -0700 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-19 23:54:14 -0700 |
commit | ab2fc50b409894e101d68943ad453505df439074 (patch) | |
tree | 1a181ae612ca6fc026d6af2250ddfa163bdb025f /src | |
parent | 8e722c2ecd342bb16b6f74ca0a9efa9958ca79cc (diff) |
Place margin under list items
Diffstat (limited to 'src')
-rw-r--r-- | src/components/about-entry.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/about-entry.js b/src/components/about-entry.js index 16aa2d4..553b5e5 100644 --- a/src/components/about-entry.js +++ b/src/components/about-entry.js @@ -4,6 +4,9 @@ import { margins } from './globals' const aboutEntryStyle = css` margin: 0 0 ${margins.lg}px 0; + & li { + margin-bottom: ${margins.sm}px; + } ` export const AboutEntry = ({ headerMargin, listItems, header }) => { |