| import { Box, TextField } from "@mui/material"; | import { Box, TextField } from "@mui/material"; | ||||
| import styled from "styled-components"; | import styled from "styled-components"; | ||||
| import { PRIMARY_BACKGROUND_COLOR } from "../../../constants/stylesConstants"; | |||||
| import selectedTheme from "../../../themes"; | |||||
| export const TextFieldContainer = styled(Box)` | export const TextFieldContainer = styled(Box)` | ||||
| width: 100%; | width: 100%; | ||||
| `; | `; | ||||
| export const TextFieldStyled = styled(TextField)` | export const TextFieldStyled = styled(TextField)` | ||||
| background-color: ${PRIMARY_BACKGROUND_COLOR}; | |||||
| background-color: ${selectedTheme.primaryBackgroundColor}; | |||||
| width: ${(props) => props.width}; | width: ${(props) => props.width}; | ||||
| font-style: ${(props) => (props.italic === true ? "italic" : "normal")}; | font-style: ${(props) => (props.italic === true ? "italic" : "normal")}; | ||||
| padding-left: 0; | padding-left: 0; |
| import { Typography } from "@mui/material"; | import { Typography } from "@mui/material"; | ||||
| import styled from "styled-components"; | import styled from "styled-components"; | ||||
| import { PRIMARY_GRAY_TEXT_COLOR } from "../../../../constants/stylesConstants"; | |||||
| import selectedTheme from "../../../../themes"; | |||||
| export const FormContainer = styled.form` | export const FormContainer = styled.form` | ||||
| font-weight: 400; | font-weight: 400; | ||||
| display: flex; | display: flex; | ||||
| align-items: center; | align-items: center; | ||||
| color: ${PRIMARY_GRAY_TEXT_COLOR}; | |||||
| color: ${selectedTheme.primaryDarkGrayText}; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 100%; | width: 100%; | ||||
| text-align: left; | text-align: left; |
| import { Typography } from "@mui/material"; | import { Typography } from "@mui/material"; | ||||
| import styled from "styled-components"; | import styled from "styled-components"; | ||||
| import { PRIMARY_GRAY_TEXT_COLOR } from "../../../../constants/stylesConstants"; | |||||
| import selectedTheme from "../../../../themes"; | |||||
| export const FormContainer = styled.form` | export const FormContainer = styled.form` | ||||
| width: 335px; | width: 335px; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| display: flex; | display: flex; | ||||
| align-items: center; | align-items: center; | ||||
| color: ${PRIMARY_GRAY_TEXT_COLOR}; | |||||
| color: ${selectedTheme.primaryDarkGrayText}; | |||||
| font-size: 12px; | font-size: 12px; | ||||
| width: 100%; | width: 100%; | ||||
| text-align: left; | text-align: left; |