DocSpace-client/packages/components/selection-area/StyledSelectionArea.js

16 lines
270 B
JavaScript
Raw Normal View History

import styled from "styled-components";
const StyledSelectionArea = styled.div`
top: 0;
left: 0;
position: fixed;
2023-02-06 11:31:53 +00:00
margin: 0;
2023-02-13 13:58:49 +00:00
display: none;
background: rgba(68, 170, 255, 0.5);
border: 1px solid #4af;
z-index: 1000;
`;
export { StyledSelectionArea };