Files
bruno/packages/bruno-app/src/pageComponents/Index/StyledWrapper.js
2023-09-04 14:21:59 -05:00

28 lines
386 B
JavaScript

import styled from 'styled-components';
const Wrapper = styled.div`
display: flex;
width: 100%;
height: 100%;
min-height: 100vh;
max-height: 100vh;
&.is-dragging {
cursor: col-resize !important;
}
section.main {
display: flex;
section.request-pane,
section.response-pane {
}
}
.fw-600 {
font-weight: 600;
}
`;
export default Wrapper;