HichamELBSI eae7e7ec1d Fix PR review
Signed-off-by: HichamELBSI <elabbassih@gmail.com>
2020-03-25 15:45:40 +01:00

17 lines
336 B
JavaScript

import styled from 'styled-components';
const EmptyInputMedia = styled.div`
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: ${({ theme }) => theme.main.colors.black};
cursor: pointer;
`;
export default EmptyInputMedia;