mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-27 06:34:06 +00:00
28 lines
386 B
JavaScript
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;
|