diff options
Diffstat (limited to 'docs/src/pages/themes.astro')
-rw-r--r-- | docs/src/pages/themes.astro | 18 |
1 files changed, 9 insertions, 9 deletions
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> |