File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11---
22import { marked } from " marked" ;
33import { getGlossaryEntries } from " ~/util/glossary" ;
4- import { LinkButton } from " @astrojs/starlight/components" ;
54
65interface Props {
76 product? : string ;
@@ -44,9 +43,14 @@ const INITIAL_VISIBLE_ROWS = 20;
4443
4544{
4645 terms .length > INITIAL_VISIBLE_ROWS && (
47- <LinkButton id = " glossary-button" href = " " class = " justify-center" >
48- View more terms
49- </LinkButton >
46+ <div class = " flex items-center justify-center" >
47+ <button
48+ id = " glossary-button"
49+ class = " h-12 cursor-pointer rounded bg-cl1-brand-orange px-6 font-medium text-cl1-black"
50+ >
51+ View more terms
52+ </button >
53+ </div >
5054 )
5155}
5256
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export default class extends WorkerEntrypoint<Env> {
4646 rehypeParse ,
4747 rehypeBaseUrl ,
4848 rehypeFilterElements ,
49- remarkGfm ,
49+ [ remarkGfm , { tablePipeAlign : false } ] ,
5050 rehypeRemark ,
5151 remarkStringify ,
5252 ] ) ;
You can’t perform that action at this time.
0 commit comments