Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 2bd7723

Browse files
background colors are removed
1 parent baaf89a commit 2bd7723

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/pages/Login.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import React from 'react';
2-
import { Link, useHistory } from 'react-router-dom';
3-
import { Row, Col, Card, Typography } from 'antd';
1+
import { Card, Col, Row, Typography } from 'antd';
42
import { Formik } from 'formik';
53
import { Form, Input, SubmitButton } from 'formik-antd';
6-
import * as Yup from 'yup';
74
import jsSha512 from 'js-sha512';
8-
import { API, SESSION } from '../services';
5+
import React from 'react';
6+
import { Link, useHistory } from 'react-router-dom';
7+
import * as Yup from 'yup';
98
import { useIsMounted } from '../hooks';
9+
import { API, SESSION } from '../services';
1010

1111
const { Title } = Typography;
1212

@@ -15,16 +15,16 @@ const LoginSchema = Yup.object({
1515
password: Yup.string().required('Password required'),
1616
});
1717

18-
// const initialValues = {
19-
// email: 'todo@gmail.com',
20-
// password: 'password',
21-
// };
22-
2318
const initialValues = {
24-
email: undefined,
25-
password: undefined,
19+
email: 'todo@gmail.com',
20+
password: 'password',
2621
};
2722

23+
// const initialValues = {
24+
// email: undefined,
25+
// password: undefined,
26+
// };
27+
2828
export function Login() {
2929
const history = useHistory();
3030
const isMounted = useIsMounted();

src/styles/style.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@
8080
}
8181

8282
.todo-new {
83-
background-color: rgba(93, 110, 239, 0.5);
83+
// background-color: rgba(93, 110, 239, 0.5);
8484
}
8585

8686
.todo-inprogress {
87-
background-color: rgba(253, 166, 41, 0.5);
87+
// background-color: rgba(253, 166, 41, 0.5);
8888
}
8989

9090
.todo-completed {
91-
background-color: rgba(145, 211, 141, 0.5);
91+
// background-color: rgba(145, 211, 141, 0.5);
9292
}

0 commit comments

Comments
 (0)