File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ export default defineConfig({
5858 ] ,
5959 components : {
6060 Head : './src/components/starlight/Head.astro' ,
61+ MarkdownContent : './src/components/starlight/MarkdownContent.astro' ,
6162 ThemeSelect : './src/components/ThemeSelect.astro' ,
6263 } ,
6364 customCss : [ './src/styles/custom.css' ] ,
Original file line number Diff line number Diff line change 1+ ---
2+ import NovaMarkdownContent from ' starlight-theme-nova/components/MarkdownContent.astro'
3+ import ImageZoom from ' starlight-image-zoom/components/ImageZoom.astro'
4+ ---
5+
6+ <ImageZoom />
7+ <NovaMarkdownContent ><slot /></NovaMarkdownContent >
Original file line number Diff line number Diff line change 3939 font-family : 'General Sans' , sans-serif;
4040}
4141
42+ /* Restore list styles removed by Tailwind preflight. */
43+ @layer base {
44+ ul {
45+ list-style : disc;
46+ padding-left : 1.5rem ;
47+ }
48+ ol {
49+ list-style : decimal;
50+ padding-left : 1.5rem ;
51+ }
52+ }
53+
4254/* Add spacing between paragraphs and interactive components (e.g. LinkButton) */
4355.sl-markdown-content > p + .not-content {
4456 margin-top : 1rem ;
You can’t perform that action at this time.
0 commit comments