| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { Box, ImageList } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../../../themes";
- import { Label } from "../../../CheckBox/Label";
- import HorizontalScroller from "../../../Scroller/HorizontalScroller";
- import { ReactComponent as TrashIcon } from "../../../../assets/images/svg/trash.svg";
-
- export const CreateOfferFormContainer = styled(Box)`
- width: 350px;
- height: 700px;
- padding-top: 20px;
- `;
-
- export const ImageCard = styled.img`
- width: 216px;
- height: 144px;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- `;
- export const ImageListStyled = styled(ImageList)`
- display: flex;
- flex: 1;
- overflow: hidden;
- cursor: grab;
- `;
- export const FieldLabel = styled(Label)`
- position: relative;
- top: 12px;
- & label {
- font-size: 12px;
- font-weight: 600;
- line-height: 20px;
- color: ${selectedTheme.primaryGrayText};
- cursor: auto;
- letter-spacing: 0.2px;
- }
- `;
- export const Scroller = styled(HorizontalScroller)`
- min-width: 640px;
- position: relative;
- left: calc(-320px + 50%);
- margin-bottom: 36px;
- `;
- export const Trash = styled(TrashIcon)`
- cursor: pointer;
- margin: auto;
- width: 22px;
- height: 22px;
- & path {
- stroke: white;
-
- }
- `;
|