Op Builder
Op Builder
@otthry Update the ```DialogContent``` component ```tsx e.preventDefault()} onPointerDown={(e) => e.preventDefault()} onInteractOutside={(e) => e.preventDefault()} > ... ```
@MilanObrenovic You can use ```ScrollArea``` component from @shadcn to have a scroll and here is the demo ```tsx import { ScrollArea } from '@/components/ui/scroll-area'; export function DrawerDemo() { return (...
@MilanObrenovic I will try it on mobile and figure out the issue
@MilanObrenovic I have raised an issue with package ```vaul```, We should wait for the author to resolve
@czw333221 Can you share the version of ```@radix-ui/react-dropdown-menu``` package in the ```package.json```
@mtnoronha Here is the working ```Label``` ```tsx import { Label } from '@/components/ui/label'; import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'; export function PopoverDemo() { const [open, setOpen] = useState(false);...
@Sashkan It's not the problem with ```cn``` function Property ```right-0``` will not work when the position is said to ```relative```. It will only work when the position is ```absolute```, ```fixed```
@steinhardt21 You can change the styles of the ```DialogClose``` button from the ```dialog.tsx``` file so that they will be consistent across the app
@MohammadHarisZia-ell You should modify the ```onOpenChange``` event-listener to this ```const [open, setOpen] = React.useState(false); const onOpenChange = (val) => { console.log("inside", val); setOpen(val); };``` ```tsx export function NewPost() { const...
@684efs3 Update the files with the changes to have a animated collapsible like accordion Api reference: https://www.radix-ui.com/primitives/docs/components/collapsible#animating-content-size ```tailwind.config.ts``` ```ts keyframes: { 'collapsible-down': { from: { height: '0' }, to: {...