summaryrefslogtreecommitdiff
path: root/docs/src/components/SiteSidebar.astro
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/components/SiteSidebar.astro')
-rw-r--r--docs/src/components/SiteSidebar.astro15
1 files changed, 2 insertions, 13 deletions
diff --git a/docs/src/components/SiteSidebar.astro b/docs/src/components/SiteSidebar.astro
index 6503c0414..382b122f4 100644
--- a/docs/src/components/SiteSidebar.astro
+++ b/docs/src/components/SiteSidebar.astro
@@ -47,7 +47,7 @@ const {currentPage} = Astro.props;
}
.nav-groups > :first-child {
- padding-top: 2rem;
+ padding-top: var(--doc-padding);
}
.nav-groups > :last-child {
@@ -87,21 +87,10 @@ const {currentPage} = Astro.props;
color: hsla(var(--color-base-white), 100%, 1);
}
- @media (min-width: 60em) {
- .nav-link a {
- border-radius: 999px;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
+ @media (min-width: 50em) {
.nav-groups {
padding: 0;
}
}
- @media (min-width: 86.25em) {
- .nav-link a {
- border-radius: 8px;
- }
- }
-
</style>