Przeglądaj źródła

Merge branch 'login-page' of http://176.104.105.124:3000/selenaaasi/trampa-frontend into home

pull/2/head
Djordje Mitrovic 3 lat temu
rodzic
commit
6901fa2ec0

+ 2
- 2
src/components/TextFields/TextField/TextField.styled.js Wyświetl plik

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;

+ 2
- 2
src/pages/RegisterPages/Register/SecondPart/SecondPartOfRegistration.styled.js Wyświetl plik

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;

+ 2
- 2
src/pages/RegisterPages/Register/ThirdPart/ThirdPartOfRegistration.styled.js Wyświetl plik

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;

Ładowanie…
Anuluj
Zapisz