kleros/kleros-v2

View on GitHub
web/src/components/Overlay.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import styled from "styled-components";

export const Overlay = styled.div`
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: ${({ theme }) => theme.blackLowOpacity};
  z-index: 30;
`;