File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1919 };
2020
2121 let {
22- markdown,
22+ markdown : md ,
2323 inline = false ,
2424 parseRawHtml = false ,
2525 additionalPlugins = [],
3838 )}
3939>
4040 <Markdown
41- md ={ markdown }
41+ { md }
4242 plugins ={[
4343 gfmPlugin (),
4444 ... (parseRawHtml ? [{ rehypePlugin: rehypeRaw }] : []),
Original file line number Diff line number Diff line change 727727 <Button
728728 href ={release .html_url }
729729 target =" _blank"
730- class =" group mb-4 ml-auto mr-8 font-semibold dark:text-black sm:ml-4 sm:mt-auto"
730+ class =" group mb-4 ml-auto mr-8 gap-0 font-semibold dark:text-black sm:ml-4 sm:mt-auto"
731731 >
732732 Open on <img src =" /github.svg" alt =" GitHub" class =" ml-1.5 size-5" />
733733 <ArrowUpRight
Original file line number Diff line number Diff line change 11import type { Config } from "tailwindcss" ;
22import defaultTheme from "tailwindcss/defaultTheme" ;
3+ import typography from "@tailwindcss/typography" ;
34import tailwindcssAnimate from "tailwindcss-animate" ;
45
56const config : Config = {
@@ -73,6 +74,15 @@ const config: Config = {
7374 fontFamily : {
7475 sans : [ ...defaultTheme . fontFamily . sans ]
7576 } ,
77+ typography : {
78+ DEFAULT : {
79+ css : {
80+ a : {
81+ color : 'theme("colors.primary.DEFAULT")'
82+ }
83+ }
84+ }
85+ } ,
7686 keyframes : {
7787 "accordion-down" : {
7888 from : { height : "0" } ,
@@ -94,7 +104,7 @@ const config: Config = {
94104 }
95105 }
96106 } ,
97- plugins : [ tailwindcssAnimate ]
107+ plugins : [ typography , tailwindcssAnimate ]
98108} ;
99109
100110export default config ;
You can’t perform that action at this time.
0 commit comments