Skip to content

Commit d75100f

Browse files
committed
fix(popover): fix full width
1 parent c7fd3b6 commit d75100f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/fractal/src/components/Popover/Popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const Popover = forwardRef<CombinedRefs, PopoverProps>(
200200
? `${PREFIX}-${GROUP_NAME}--opened`
201201
: `${PREFIX}-${GROUP_NAME}--closed`,
202202
disabled ? `${PREFIX}-${GROUP_NAME}--disabled` : '',
203-
fullWidth ? `${PREFIX}-${GROUP_NAME}--full-width` : 'sm:w-fit',
203+
fullWidth ? `${PREFIX}-${GROUP_NAME}--full-width w-full` : 'sm:w-fit',
204204
props.className,
205205
)}
206206
{...omit(['className'], props)}

0 commit comments

Comments
 (0)