Skip to content

Commit

Permalink
fix(loadingindicator): fix overflow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbien committed May 31, 2020
1 parent e87b255 commit 06522db
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/LoadingIndicator/LoadingIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,12 @@ const sharedIndeterminateInnerStyles = css`
position: absolute;
`;
const IndeterminateWrapper = styled.div`
width: 100%;
height: 100%;
position: relative;
top: 2px;
left: 2px;
width: calc(100% - 4px);
height: calc(100% - 4px);
overflow: hidden;
`;
const IndeterminatePrimary = styled.div`
${sharedIndeterminateStyles}
Expand Down

0 comments on commit 06522db

Please sign in to comment.