Skip to content

Commit

Permalink
fix(panel): prevent menu actions from being clipped in Safari (#9488)
Browse files Browse the repository at this point in the history
**Related Issue:** #8028

## Summary

- do not cut off menu actions
- `position:relative` on the container class within the panel seems to
fix the safari issue. Not sure how we can test this without manual
testing or getting different browser screenshots setup.

@geospatialem @DitwanP could one of you help test this fix?
  • Loading branch information
driskull committed Jun 4, 2024
1 parent 85464d6 commit 29eb4ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
}

.container {
@apply bg-background m-0 flex w-full flex-auto flex-col items-stretch p-0;
@apply relative bg-background m-0 flex w-full flex-auto flex-col items-stretch p-0;

transition:
max-block-size var(--calcite-animation-timing),
Expand Down

0 comments on commit 29eb4ce

Please sign in to comment.