Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
archywillhe committed Aug 27, 2024
1 parent 8389379 commit b1808b6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export default defineConfig({
starlight({
title: 'My Docs',
plugins: [starlightThemeRapide()],
social: {
github: 'https://github.com/withastro/starlight',
},
// social: {
// github: 'https://github.com/withastro/starlight',
// },
expressiveCode: {
// plugins: [pluginLineNumbers()],
themes: ['dracula', 'solarized-light'],
Expand All @@ -26,7 +26,7 @@ export default defineConfig({
// },
codeFontSize: '0.76rem',
},
},
},
sidebar: [
{
label: 'Guides',
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/Example.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export const highlights = [];


<Code code={exampleCode} lang="js"

/>
</div>
9 changes: 6 additions & 3 deletions docs/src/pages/hi.astro → docs/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
margin: 0;
font-size: 110%;
white-space: break-spaces;
background-color: rgba(175, 184, 193, 0.2);
background-color: rgba(129, 135, 141, 0.2) !important;
border-radius: 6px;
}
pre code{
background-color: rgba(129, 135, 141, 0.2)
}

blockquote {
background-color: #f9f9f9;
Expand Down Expand Up @@ -116,10 +119,10 @@ import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';

</div>
<br /><br />
<CardGrid>
<!-- <CardGrid>
<LinkCard title="Authoring Markdown" href="/guides/authoring-content/" />
<LinkCard title="Components" href="/guides/components/" />
</CardGrid>
</CardGrid> -->
</div>
</div>
</div>
Expand Down

0 comments on commit b1808b6

Please sign in to comment.