mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-24 21:25:45 +00:00
27 lines
465 B
JavaScript
27 lines
465 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.CodeMirror {
|
|
border: solid 1px #e1e1e1;
|
|
}
|
|
|
|
div.overlay{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 9;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
background: rgb(243 243 243 / 78%);
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|