You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MainLayout.styled.js 406B

12345678910111213141516171819
  1. import { Container, Grid } from "@mui/material";
  2. import styled from "styled-components";
  3. export const MainLayoutContainer = styled(Container)`
  4. padding-left: 0;
  5. padding-right: 0;
  6. margin: 0;
  7. width: 100%;
  8. display: flex;
  9. flex: 1;
  10. height: 100%;
  11. `
  12. export const LeftCard = styled(Grid)`
  13. margin-top: 30px;
  14. border-top-right-radius: 4px;
  15. `
  16. export const Content = styled(Grid)`
  17. `