Skip to content

Instantly share code, notes, and snippets.

@sidneisimeao
Created January 30, 2019 12:56
Show Gist options
  • Save sidneisimeao/2e14bf4089db2aeb6058a8a6841b9958 to your computer and use it in GitHub Desktop.
Save sidneisimeao/2e14bf4089db2aeb6058a8a6841b9958 to your computer and use it in GitHub Desktop.
import styled from "styled-components";
const Post = styled.section `
padding-bottom: 2em;
header {
h2 {
font-size: 2em;
color: #222;
margin-bottom: 0.2em;
};
p {
color: #999;
font-size: 90%;
margin: 0;
a:first-child {
color: #999;
font-size: 90%;
margin: 0;
}
}
}
`;
export default Post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment