diff --git a/src/app/globals.css b/src/app/globals.css index e34a4c8..431ee48 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,4 +1,5 @@ @import "@fontsource/fira-code/500.css"; +@import "github-markdown-css/github-markdown.css"; @tailwind base; @tailwind components; @@ -70,4 +71,18 @@ @apply bg-background text-foreground; font-family: "Fira Code"; } -} \ No newline at end of file +} + +.markdown-body { + box-sizing: border-box; + min-width: 200px; + max-width: 980px; + margin: 0 auto; + padding: 45px; +} + +@media (max-width: 768px) { + .markdown-body { + padding: 15px; + } +}