| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { Box, Typography } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../../../themes";
- import { Label } from "../../../CheckBox/Label";
- import HorizontalScroller from "../../../Scroller/HorizontalScroller";
-
- export const CreateOfferFormContainer = styled(Box)`
- padding-top: 20px;
- margin-top: 20px;
- position: relative;
- `;
-
- 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 InputButtonContainer = styled(Box)`
- width: 332px;
- margin: 25px auto;
- display: flex;
- flex-direction: column;
- justify-content: center;
- `;
-
- export const Scroller = styled(HorizontalScroller)`
- min-width: 100%;
- position: relative;
- margin-bottom: 36px;
- `;
-
- export const SupportedFormats = styled(Typography)`
- font-size: 13px;
- width: 100%;
- text-align: center;
- font-family: "DM Sans";
- /* margin-top: 0px; */
- `;
|