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.

SecondPartCreateOffer.styled.js 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { Box, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. import { Label } from "../../../CheckBox/Label";
  5. import HorizontalScroller from "../../../Scroller/HorizontalScroller";
  6. export const CreateOfferFormContainer = styled(Box)`
  7. padding-top: 20px;
  8. margin-top: 20px;
  9. position: relative;
  10. `;
  11. export const FieldLabel = styled(Label)`
  12. position: relative;
  13. top: 12px;
  14. & label {
  15. font-size: 12px;
  16. font-weight: 600;
  17. line-height: 20px;
  18. color: ${selectedTheme.primaryGrayText};
  19. cursor: auto;
  20. letter-spacing: 0.2px;
  21. }
  22. `;
  23. export const InputButtonContainer = styled(Box)`
  24. width: 332px;
  25. margin: 25px auto;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: center;
  29. `;
  30. export const Scroller = styled(HorizontalScroller)`
  31. min-width: 100%;
  32. position: relative;
  33. margin-bottom: 36px;
  34. `;
  35. export const SupportedFormats = styled(Typography)`
  36. font-size: 13px;
  37. width: 100%;
  38. text-align: center;
  39. font-family: "DM Sans";
  40. /* margin-top: 0px; */
  41. `;