mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 11:51:30 +00:00
31 lines
658 B
JavaScript
31 lines
658 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
&.dragging {
|
|
cursor: col-resize;
|
|
}
|
|
|
|
div.drag-request {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 10px;
|
|
padding: 0;
|
|
cursor: col-resize;
|
|
background: transparent;
|
|
|
|
div.drag-request-border {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 1px;
|
|
border-left: solid 1px ${(props) => props.theme.requestTabPanel.dragbar.border};
|
|
}
|
|
|
|
&:hover div.drag-request-border {
|
|
border-left: solid 1px ${(props) => props.theme.requestTabPanel.dragbar.activeBorder};
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|