mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-11 18:58:45 -06:00
fix: prevent StylingSection background from overflowing rounded border
This commit is contained in:
@@ -20,7 +20,7 @@ export const StylingSection = ({ title, open, setOpen, children }: StylingSectio
|
||||
const [parent] = useAutoAnimate();
|
||||
|
||||
return (
|
||||
<div ref={parent} className="rounded-md border">
|
||||
<div ref={parent} className="overflow-hidden rounded-md border">
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setOpen(!open)}
|
||||
|
||||
Reference in New Issue
Block a user