Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-baer committed Jan 21, 2025
1 parent 29182d5 commit cd7ebc1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions packages/circuit-ui/components/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ export const Dialog = forwardRef<HTMLDialogElement, DialogProps>(
preventClose = false,
animationDuration = 0,
onCloseStart,
locale,
...rest
} = useI18n(props, translations);
const dialogRef = useRef<HTMLDialogElement>(null);
Expand Down
1 change: 0 additions & 1 deletion packages/circuit-ui/components/Popover/Popover.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

.menu {
box-sizing: border-box;
visibility: hidden;
max-height: var(--popover-max-height);
padding: var(--cui-spacings-byte) 0;
overflow-y: auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
--tooltip-arrow-size: calc(var(--cui-spacings-byte) * 1.414);

z-index: var(--cui-z-index-popover);
visibility: hidden;
width: max-content;
max-width: 360px;
max-width: min(360px, 100vw);
Expand Down

0 comments on commit cd7ebc1

Please sign in to comment.