mirror of
https://github.com/outline/outline.git
synced 2026-06-22 15:54:23 +03:00
cc90c8de1c
* wip * refactor behaviorg * stash * simplify
14 lines
212 B
JavaScript
14 lines
212 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const ResizeBorder = styled.div`
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: -6px;
|
|
width: 12px;
|
|
cursor: ew-resize;
|
|
`;
|
|
|
|
export default ResizeBorder;
|