a tool for shared writing and social publishing
0
fork

Configure Feed

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

added a max height to the theme popover so you can scroll and access the bottom most options

celine e2ca90dd 01be61ee

+2 -2
+2 -2
app/test/themeSetter.tsx
··· 50 50 </Popover.Trigger> 51 51 <Popover.Portal> 52 52 <Popover.Content 53 - className="w-64 py-2 px-3 bg-bg-page rounded-md border border-border flex flex-col gap-4" 53 + className="w-64 max-h-[800px] overflow-y-scroll py-2 px-3 bg-bg-page rounded-md border border-border flex flex-col gap-4 " 54 54 align="center" 55 55 sideOffset={4} 56 56 collisionPadding={16} ··· 168 168 <div className="flex justify-between items-center"> 169 169 <strong>{props.label}</strong> 170 170 <ColorField defaultValue={props.value} className="w-fit"> 171 - <Input className="w-[88px]" /> 171 + <Input className="w-[88px] " /> 172 172 </ColorField> 173 173 </div> 174 174