Skip to content

Commit 29eb4ce

Browse files
authored
fix(panel): prevent menu actions from being clipped in Safari (#9488)
**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?
1 parent 85464d6 commit 29eb4ce

File tree

1 file changed

+1
-1
lines changed
  • packages/calcite-components/src/components/panel

1 file changed

+1
-1
lines changed

packages/calcite-components/src/components/panel/panel.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444

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

4848
transition:
4949
max-block-size var(--calcite-animation-timing),

0 commit comments

Comments
 (0)