Skip to content
Snippets Groups Projects
Unverified Commit 5df8daf5 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Fix images in markdown for events (#22189)

parent 74c3fec5
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,11 @@ export const MarkdownRoot = styled(getComponent(ReactMarkdown))`
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
}
`;
function getComponent<P>(component: (props: P) => ReactElement): FC<P> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment