Skip to content

Commit

Permalink
[docs] small scroll improvements (#900)
Browse files Browse the repository at this point in the history
  • Loading branch information
stopachka authored Feb 18, 2025
1 parent bd66419 commit 38b1e1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/www/components/docs/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export function Layout({ children, title, tableOfContents }) {
<div className="absolute inset-0">
<div
className={clsx(
'sticky overflow-y-auto px-4',
'sticky overflow-y-auto px-4 pb-4',
adj.topHeader,
adj.hWithoutHeader,
)}
Expand Down
2 changes: 1 addition & 1 deletion client/www/components/docs/Navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function Navigation({ navigation, className }) {

return (
<nav className={clsx('text-sm', className)}>
<ul role="list" className="space-y-9">
<ul role="list" className="space-y-6">
{navigation.map((section) => (
<li key={section.title}>
<h2 className="font-medium text-slate-900 dark:text-white">
Expand Down

0 comments on commit 38b1e1d

Please sign in to comment.