Files
developer-roadmap/components/mdx-components/blockquote.js

27 lines
361 B
JavaScript
Raw Normal View History

2019-11-02 12:45:15 +04:00
import styled from 'styled-components';
2019-11-02 17:50:57 +04:00
const BlockQuote = styled.blockquote`
2019-11-02 12:45:15 +04:00
padding: 16px 20px;
position: relative;
2019-11-02 17:50:57 +04:00
background: #e8e8e8;
border-radius: 5px;
2019-11-02 12:45:15 +04:00
2019-11-09 14:56:56 +04:00
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
}
p + h4 {
margin-top: 15px;
}
2019-11-02 12:45:15 +04:00
p {
margin: 0;
2019-11-09 14:56:56 +04:00
& + p {
margin-top: 10px;
}
2019-11-02 12:45:15 +04:00
}
2019-11-02 17:50:57 +04:00
`;
2019-11-09 14:56:56 +04:00
export default BlockQuote;