DocSpace-client/web/ASC.Web.Components/src/components/backdrop/index.js

15 lines
350 B
JavaScript
Raw Normal View History

import React from 'react'
2019-07-10 09:49:14 +00:00
import styled from 'styled-components'
const StyledBackdrop = styled.div`
background-color: rgba(0, 0, 0, 0.3);
display: ${props => props.visible ? 'block' : 'none'};
height: 100vh;
position: fixed;
2019-07-10 09:49:14 +00:00
width: 100vw;
z-index: 100;
`;
const Backdrop = props => <StyledBackdrop {...props}/>
export default Backdrop;