Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
300 Bytes
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;
`