Skip to content

Commit

Permalink
fix: issue with popover visibility, replaced with display:none (#2828)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget authored Jul 8, 2024
1 parent a867b08 commit a913a56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/styles/_popover-component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ $popover-gap-inset: calc(-1 * #{$popover-gap-size});
}

%show-popover {
visibility: visible;
display: revert;

&:not([data-placement]):not([data-outside-vy]),
&[data-placement^="bottom"]:not([data-outside-vy]),
Expand Down Expand Up @@ -186,7 +186,7 @@ $popover-gap-inset: calc(-1 * #{$popover-gap-size});
position: absolute;
background-color: colors.$db-current-color-bg-lvl-1-enabled;
box-shadow: variables.$db-elevation-md;
visibility: hidden;
display: none;
z-index: 1;
white-space: nowrap;

Expand Down

0 comments on commit a913a56

Please sign in to comment.