| 123456789101112131415161718192021222324252627282930313233 |
- import { Container, Grid } from "@mui/material";
- import styled from "styled-components";
-
- export const ItemDetailsLayoutContainer = styled(Container)`
- padding-left: 60px;
- padding-right: 0;
- margin: 0;
- width: 100%;
- max-width: none;
- display: flex;
- position: relative;
- flex: 1;
- height: 100%;
- @media (max-width: 1200px) {
- padding-right: 60px;
- }
- @media (max-width: 600px) {
- padding-left: 18px;
- padding-right: 18px;
- }
- `;
-
- export const RightCard = styled(Grid)`
- margin-top: 34px;
- border-top-right-radius: 4px;
- width: 100%;
- /* @media (max-width: 800px) {
- position: relative;
- bottom: -500px;
- } */
- `;
- export const Content = styled(Grid)`
- `;
|