Skip to content

Instantly share code, notes, and snippets.

View jalezi's full-sized avatar

Jaka Daneu jalezi

  • Slovenia
  • 21:54 (UTC +02:00)
  • X @jalezi
View GitHub Profile
@jalezi
jalezi / Markdown.js
Last active November 25, 2021 09:13
styled markodown
import { styled } from '@mui/material/styles';
import MarkdownBase from 'markdown-to-jsx';
export const CustomContainer = styled('div')(({ theme }) => {
return {
margin: '24px auto 0 auto',
maxWidth: '730px',
'@media only screen and (min-width: 768px)': {
margin: '48px auto 65px auto',
boxShadow: theme.MD.elementBoxShadow,