Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 10701bb

Browse files
mkwsnyderPuruVJdummdidumm03juan
authored
fix: aside uses only the space required (#177)
* fix: aside uses only the space required * Update packages/site-kit/src/lib/docs/DocsOnThisPage.svelte Co-authored-by: Juan Barrios <[email protected]> --------- Co-authored-by: Puru Vijay <[email protected]> Co-authored-by: Simon H <[email protected]> Co-authored-by: Juan Barrios <[email protected]>
1 parent c02e90c commit 10701bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/site-kit/src/lib/docs/DocsOnThisPage.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
position: fixed;
248248
padding: var(--sk-page-padding-top) var(--sk-page-padding-side) 0 0;
249249
width: min(280px, calc(var(--sidebar-width) - var(--sk-page-padding-side)));
250-
height: calc(100vh - var(--sk-nav-height) - var(--sk-page-padding-top));
250+
max-height: calc(100vh - var(--sk-nav-height) - var(--sk-page-padding-top));
251251
top: var(--sk-nav-height);
252252
left: calc(100vw - (var(--sidebar-width)));
253253
overflow-y: auto;

0 commit comments

Comments
 (0)