Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Last active April 27, 2016 22:01
Show Gist options
  • Save sebjwallace/48af54f94b0fa8849312fece36d1a9a3 to your computer and use it in GitHub Desktop.
Save sebjwallace/48af54f94b0fa8849312fece36d1a9a3 to your computer and use it in GitHub Desktop.
.Media {
display: flex;
align-items: stretch;
}
.Media__image {
margin-right: 1em;
}
.Media__body {
flex: 1;
}
var MediaObject = props =>
<div className="Media">
<img className="Media__image" src={props.src}/>
<div className="Media__body">
<p> {props.content} </p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment