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.

MarketPlace.styled.js 271B

123456789101112
  1. import { Box } from "@mui/material";
  2. import styled from "styled-components";
  3. export const MarketPlaceContainer = styled(Box)`
  4. height: 100%;
  5. margin: 0 70px;
  6. @media (max-width: 550px) {
  7. margin: -30px 1.8rem;
  8. margin-left: 18px;
  9. margin-right: 18px;
  10. }
  11. `;