Files
bruno/packages/bruno-app/src/components/ResponsePane/Overlay/StyledWrapper.js
2023-10-10 01:08:00 +05:30

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;