/* License: MIT Author: devhub.near Homepage: https://github.com/NEAR-DevHub/near-prpsls-bos#readme */ const Container = styled.div` p { white-space: pre-line; // This ensures text breaks to new line span { white-space: normal; // and this ensures profile links look normal } } blockquote { margin: 1em 0; padding-left: 1.5em; border-left: 4px solid #ccc; color: #666; font-style: italic; font-size: inherit; } pre { background-color: #f4f4f4; border: 1px solid #ddd; border-radius: 4px; padding: 1em; overflow-x: auto; font-family: "Courier New", Courier, monospace; } a { color: #3c697d; font-weight: 500 !important; } `; return ( <Container> <Markdown text={props.content} /> </Container> );