diff options
author | 2021-07-16 13:39:48 -0400 | |
---|---|---|
committer | 2021-07-16 13:39:48 -0400 | |
commit | dc4ba25b01254ed1c2088c081e8c861172ae58a4 (patch) | |
tree | e8424c9266de0886e8fb3c133da7f87e2eeacb11 /docs/src/components/SiteSidebar.astro | |
parent | 94fdd0db1b0a8ba2f109c5a240dc5770fdf784b8 (diff) | |
download | astro-dc4ba25b01254ed1c2088c081e8c861172ae58a4.tar.gz astro-dc4ba25b01254ed1c2088c081e8c861172ae58a4.tar.zst astro-dc4ba25b01254ed1c2088c081e8c861172ae58a4.zip |
Revert "New getting started guide (#715)"
This reverts commit 2827f077baab6674a8ee47f3006e82ce991118b8.
Diffstat (limited to 'docs/src/components/SiteSidebar.astro')
-rw-r--r-- | docs/src/components/SiteSidebar.astro | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/src/components/SiteSidebar.astro b/docs/src/components/SiteSidebar.astro index 33e9fbfb6..6d003d71d 100644 --- a/docs/src/components/SiteSidebar.astro +++ b/docs/src/components/SiteSidebar.astro @@ -24,15 +24,13 @@ const {currentPage} = Astro.props; <style> nav { position: sticky; - min-height: calc(100vh - var(--theme-navbar-height)); - height: calc(100vh - var(--theme-navbar-height)); - top: var(--theme-navbar-height); - width: 100%; - margin-right: 1rem; + min-height: calc(100vh - 3.5rem); + height: calc(100vh - 3.5rem); + top: 3.5rem; } .nav-groups { height: 100%; - padding: 0; + padding: 2rem 0; overflow: auto; } @@ -68,4 +66,4 @@ const {currentPage} = Astro.props; font-weight: 600; } -</style> +</style>
\ No newline at end of file |