diff options
Diffstat (limited to 'docs/src/pages')
-rw-r--r-- | docs/src/pages/guides/deploy.md | 2 | ||||
-rw-r--r-- | docs/src/pages/themes.astro | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index b89a7fa5f..18bbb12d2 100644 --- a/docs/src/pages/guides/deploy.md +++ b/docs/src/pages/guides/deploy.md @@ -37,7 +37,7 @@ By default, the build output will be placed at `dist/`. You may deploy this `dis 1. Set the correct `buildOptions.site` in `astro.config.mjs`. 1. Inside your project, create `deploy.sh` with the following content (uncommenting the appropriate lines), and run it to deploy: - ```bash{13,20,23} + ```bash #!/usr/bin/env sh # abort on errors diff --git a/docs/src/pages/themes.astro b/docs/src/pages/themes.astro index 3bcc1df48..46ee24cec 100644 --- a/docs/src/pages/themes.astro +++ b/docs/src/pages/themes.astro @@ -5,16 +5,16 @@ import {Markdown} from 'astro/components'; import themes from '../data/themes.json'; import components from '../data/components.json'; --- -<style> - .card-grid { - display: grid; - grid-column-gap: 15px; - grid-row-gap: 15px; - grid-auto-flow: dense; - grid-template-columns: repeat(auto-fit,minmax(300px,1fr)) - } -</style> <Layout content={{title: 'Themes'}} hideRightSidebar> + <style> + .card-grid { + display: grid; + grid-column-gap: 15px; + grid-row-gap: 15px; + grid-auto-flow: dense; + grid-template-columns: repeat(auto-fit,minmax(300px,1fr)) + } + </style> <Markdown> ## Featured Theme </Markdown> |