Skip to content

Commit

Permalink
Fixes #1076 - removed unnecessary padding class in <Person> component (
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmavis authored Feb 21, 2018
1 parent c78ab75 commit d4fde2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/js/components/people/person.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class Person extends React.Component {

if (this.props.metadata.featured) {
return (
<div className="col-12 p-3 mb-4">
<div className="col-12 mb-5">
<div className="person-card person-card-featured row no-gutters">
<div className="col-md-4 col-12 mr-3">
<div className="row">
Expand Down Expand Up @@ -86,7 +86,7 @@ export default class Person extends React.Component {
);
} else {
return (
<div className="col-md-6 col-12 p-3 mb-4">
<div className="col-md-6 col-12 mb-5">
<div className="person-card row no-gutters">
<div className="col-4 mr-3">
<div className="row">
Expand Down

0 comments on commit d4fde2f

Please sign in to comment.