Skip to content

Commit 4646153

Browse files
committed
wip
1 parent c9b77e3 commit 4646153

File tree

5 files changed

+276
-135
lines changed

5 files changed

+276
-135
lines changed

css/motion.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/components/Layout.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ export default ({ meta, children }) => {
66
<Head>
77
<title>{meta.title}</title>
88
</Head>
9-
<div className="max-w-2xl w-full mx-auto px-6 py-12">
10-
{ children }
11-
</div>
9+
<div className="px-6 py-12">{children}</div>
1210
</div>
1311
)
1412
}

docs/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import MarkdownSample from '../components/MarkdownSample.mdx'
33

44
export default () => (
55
<Layout meta={{ title: 'Tailwind CSS Typography' }}>
6-
<div className="rich-text">
6+
<div className="prose mx-auto">
77
<MarkdownSample />
88
</div>
99
</Layout>

docs/pages/large.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Layout from '../components/Layout'
2+
import MarkdownSample from '../components/MarkdownSample.mdx'
3+
4+
export default () => (
5+
<Layout meta={{ title: 'Tailwind CSS Typography' }}>
6+
<div className="prose-lg mx-auto">
7+
<MarkdownSample />
8+
</div>
9+
</Layout>
10+
)

0 commit comments

Comments
 (0)