File size: 300 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import styled from 'styled-components'
export const CodeBlock = styled.pre`
margin: 0;
background-color: ${({ theme }) => theme.highlight.plain.backgroundColor};
color: ${({ theme }) => theme.highlight.plain.color};
font-size: 0.8rem;
line-height: 1.7;
padding: 12px 20px;
`
|