mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
18 lines
406 B
JavaScript
18 lines
406 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.drag-request {
|
|
display: flex;
|
|
width: 0.5rem;
|
|
padding: 0;
|
|
cursor: col-resize;
|
|
background: transparent;
|
|
border-left: solid 1px var(--color-request-dragbar-background);
|
|
|
|
&:hover {
|
|
border-left: solid 1px var(--color-request-dragbar-background-active);
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper; |