diff --git a/components/Contributors.jsx b/components/Contributors.jsx index f30b9b15825c..2d64c0df77eb 100644 --- a/components/Contributors.jsx +++ b/components/Contributors.jsx @@ -3,17 +3,15 @@ import React from 'react'; export default props => { if (props.contributors) { return ( -
+

Contributors:

- { + { (props.contributors || []).map(contributor => ( - - - { contributor } + )) } diff --git a/styles/components/_contributors.scss b/styles/components/_contributors.scss deleted file mode 100644 index 83d0f4f2d1a7..000000000000 --- a/styles/components/_contributors.scss +++ /dev/null @@ -1,21 +0,0 @@ -.contributors { - &__person { - display: inline-block; - margin-right:1em; - - &:last-of-type { - margin-right:0; - } - - img { - height: 80px; - border-radius:3px; - } - - span { - display: block; - text-align: center; - font-size:0.8em; - } - } -} \ No newline at end of file