Skip to content

Commit

Permalink
fix(docs): give the docs layout sidebar a min width
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed May 9, 2024
1 parent 56e03e5 commit a8b817e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/src/layouts/CommonDocumentation.astro
Expand Up @@ -20,7 +20,7 @@ const { documentationPages, currentPost, currentPageSlug, pathPrefix = "document

<div class="flex flex-row">
<div class="w-[22rem] p-2 pr-8 relative hidden lg:block pt-10">
<nav aria-label="Sidebar" class="sticky top-16 max-h-[calc(100vh-4rem)] overflow-y-auto p-2">
<nav aria-label="Sidebar" class="sticky min-w-[14rem] top-16 max-h-[calc(100vh-4rem)] overflow-y-auto p-2">
<ul>
{
documentationPages.map((page) => (
Expand Down

0 comments on commit a8b817e

Please sign in to comment.