Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Container = styled.div`
width: 400px;
`;

export const StoryBlocks_for_Overlay_and_Popover_content = () => (
export const Story_Blocks_for_Overlay_and_Popover_content = () => (
<>
<p>The Title component is used for rendering headers in Overlay and Popover components.</p>
<CodeExample>{`<Title onBack={onBack}>Your Projects</Title>`}</CodeExample>
Expand Down
2 changes: 1 addition & 1 deletion lib/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const StoryOverlay = () => {

return (
<>
<p>The Overlay component renders an accessible modal.</p>
<p>The Overlay component renders an accessible modal. See <a href="#Story_Blocks_for_Overlay_and_Popover_content">blocks to use with Overlays</a>.</p>
<CodeExample>
{code`
<Overlay open={open} onClose={onClose}>
Expand Down
2 changes: 1 addition & 1 deletion lib/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ const WidePopover = styled.div`

export const StoryPopover = () => (
<>
<p>The Popover component renders accessible and nestable popovers.</p>
<p>The Popover component renders accessible and nestable popovers. See <a href="#Story_Blocks_for_Overlay_and_Popover_content">blocks to use with Popovers</a>.</p>
<CodeExample>
{code`
<Popover
Expand Down
5 changes: 3 additions & 2 deletions lib/stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ const Wrapper = styled.div`

const Nav = styled.div`
position: sticky;
top: 10.5rem;
height: calc(100% - 10.5rem);
top: 5em;
height: calc(100vh - 5em);
overflow: auto;
flex: 0 0 15%;
border-right: 1px solid var(--colors-border);
@media (max-width: 1200px){
Expand Down