Skip to content

Commit

Permalink
Resolver is overflow: hidden to prevent obscured elements from showin…
Browse files Browse the repository at this point in the history
…g up
  • Loading branch information
oatkiller committed Jan 16, 2020
1 parent 54c7d34 commit e544974
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,12 @@ const Resolver = styled(
*/
display: flex;
flex-grow: 1;
/**
* The placeholder components use absolute positioning.
*/
position: relative;
/**
* Prevent partially visible components from showing up outside the bounds of Resolver.
*/
overflow: hidden;
`;

0 comments on commit e544974

Please sign in to comment.