File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const spin = keyframes`
1616 100% { transform: rotate(360deg); }
1717` ;
1818
19- const Spinner = styled . div < { $isVisible ?: boolean } > `
19+ const Spinner = styled . div `
2020 display: inline-block;
2121 width: 14px;
2222 height: 14px;
@@ -32,7 +32,7 @@ export const StyledContainer = styled.div<StyledContainerProps>`
3232 position: absolute;
3333 left: ${ props => props . $left } px;
3434 bottom: ${ props => props . theme . sidePanel . margin . left } px;
35- z-index: 10 ;
35+ z-index: 1 ;
3636 color: ${ props => props . theme . textColor } ;
3737 opacity: ${ props => ( props . $isVisible ? 1 : 0 ) } ;
3838 transition: opacity 0.5s ease-in-out;
@@ -99,7 +99,7 @@ const LoadingIndicator: React.FC<LoadingIndicatorProps & {theme: any}> = ({
9999
100100 return (
101101 < StyledContainer $isVisible = { isVisible } $left = { left } >
102- < Spinner $isVisible = { isVisible } />
102+ < Spinner />
103103 < span > { `Loading... ${ displayMessage } ` } </ span >
104104 </ StyledContainer >
105105 ) ;
You can’t perform that action at this time.
0 commit comments