@@ -9,36 +9,41 @@ So you can:
99
1010* apply any [ Tailwind class] ( https://tailwindcss.com/docs/styling-with-utility-classes )
1111* configure it and add [ custom styles] ( https://tailwindcss.com/docs/adding-custom-styles ) in
12- the [ global CSS file] ( #global-css-file )
12+ the [ global CSS file] ( #configuration )
1313
14- ## Global CSS File
14+ ## Configuration
1515
1616The [ global CSS file] ( styling.md#global-css-file ) is the tailwind entry point.
1717
18- ### Default
18+ We follow the [ shadcn convention with CSS Variable] ( https://ui.shadcn.com/docs/theming ) .
19+
1920
20- The default global CSS file import:
21+ ### Imports and plugins
2122
22- * tailwind source (ie)
23+ The default global CSS file import
2324
2425``` css
2526@import " tailwindcss" ;
2627@import " tw-animate-css" ;
2728@import " shadcn/tailwind.css" ;
29+
30+ @plugin "@tailwindcss/typography";
2831```
2932
30- * and our utilities classes:
31- * for the [ grid system] ( ../components/grid.md )
32- * ` icon `
33- * and default publishing style for headings, list, ...
33+ where ` @tailwindcss/typography ` is used for [ Prose content] ( styling.md#prose-content )
34+ that sets the default publishing style for headings, list, ...
35+
36+ ### Utilities class
37+
38+ * for the [ grid system] ( ../components/grid.md )
39+ * ` icon `
3440
35- We follow the [ shadcn convention with CSS Variable] ( https://ui.shadcn.com/docs/theming ) .
3641
37- ### Custom
42+ ## Custom Implementation
3843
3944A custom default minimal implementation of the [ global CSS file] ( styling.md#global-css-file ) would
4045
41- * import the [ default interact configuration] ( #default )
46+ * import the [ default interact configuration] ( #configuration )
4247* and add
4348 * the custom ` components ` directory
4449 * and the [ pages directory] ( directory-layout.md )
0 commit comments