Backdrop.tsx 222 B

12345678910111213
  1. import styled from 'styled-components';
  2. const Backdrop = styled.div`
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. background: rgba(0, 0, 0, 0.6);
  9. z-index: -1;
  10. `;
  11. export default Backdrop;