EscolaLMS/Front

View on GitHub
src/components/Courses/Course/CoursePanelLayout/styles.ts

Summary

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

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