mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-30 16:14:06 +00:00
27 lines
553 B
JavaScript
27 lines
553 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
position: absolute;
|
|
height: 100%;
|
|
z-index: 1;
|
|
background-color: ${(props) => props.theme.requestTabPanel.responseOverlayBg};
|
|
|
|
div.overlay {
|
|
height: 100%;
|
|
z-index: 9;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 20%;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
.loading-icon {
|
|
transform: scaleY(-1);
|
|
animation: rotateCounterClockwise 1s linear infinite;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|