Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(layout): use overflow-x-clip instead of overflow-x-hidden for sticky support (#182)

overflow-x-hidden on the ForumLayout wrapper creates a new scroll
container, breaking position: sticky on the reply composer (#181).
Replace with overflow-x-clip which clips overflow without creating
a scroll context, preserving both sticky behavior and mobile
horizontal overflow prevention.

authored by

Guido X Jansen and committed by
GitHub
682798aa 09773676

+1 -1
+1 -1
src/components/layout/forum-layout.tsx
··· 29 29 const showCommunityName = publicSettings?.showCommunityName ?? true 30 30 31 31 return ( 32 - <div className="min-h-screen overflow-x-hidden bg-background"> 32 + <div className="min-h-screen overflow-x-clip bg-background"> 33 33 <SkipLinks /> 34 34 35 35 {/* Header */}