When the popover component is opened, transform: translate is fixed to (0px, -200%). #7144
-
Even if I reinstall the Popover component, the same thing happens. What should I do? this is my datepicker code
|
Beta Was this translation helpful? Give feedback.
Answered by
GabeMillikan
May 8, 2025
Replies: 2 comments 1 reply
-
Same here, in latest firefox & chrome. Can reproduce with simply:
import { Button } from '@/components/ui/button';
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover';
export default function App() {
return (
<Popover>
<PopoverTrigger asChild>
<Button variant="outline">Click Me</Button>
</PopoverTrigger>
<PopoverContent className="w-80">Hello World</PopoverContent>
</Popover>
);
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
This fix is working for me. #910 (comment) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BaS2L
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This fix is working for me. #910 (comment)