Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
diablo1408 committed Dec 31, 2020
1 parent fe175b4 commit fd52f2f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 28 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
/node_modules
/.pnp
.pnp.js
node_modules/


# testing
/coverage
Expand Down
14 changes: 14 additions & 0 deletions frontend/public/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,19 @@
width: 50px !important;
}

.bg-image-register{
background-image: url("https://images.unsplash.com/photo-1469212044023-0e55b4b9745a?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1510&q=8");
background-repeat: no-repeat;
background-size:cover;
background-position: center center;

}
.bg-image-login{
background-image: url("https://images.unsplash.com/photo-1592135841592-b635e8350ed8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80");
background-repeat: no-repeat;
background-size:cover;
background-position: center center;
height: 100vh;
}


8 changes: 0 additions & 8 deletions frontend/src/pages/Login/index.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
import React from "react";
import Joi from "@hapi/joi";

import "../assets/css/bootstrap.min.css";


import "../assets/css/mdb.lite.min.css";
import "../assets/css/mdb.min.css";
import "../assets/css/style.min.css";

import _ from "lodash";
import { connect } from "react-redux";
import { signIn } from "../../actions/authAction";
// import Button from "../../components/common/Button";
import "./style.css";
import {Helmet} from 'react-helmet';

class Login extends React.Component {
state = {
Expand Down
8 changes: 2 additions & 6 deletions frontend/src/pages/Register/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ import "./style.css";
import {Helmet} from "react-helmet";


import "../assets/css/bootstrap.min.css";
import "../assets/css/mdb.lite.min.css";
import "../assets/css/mdb.min.css";
import "../assets/css/style.min.css";
import "../assets/css/custom.css";
;



Expand Down Expand Up @@ -283,7 +279,7 @@ class RegisterForm extends React.Component {
</div>



</div>


Expand Down
15 changes: 1 addition & 14 deletions frontend/src/pages/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,7 @@
width: 50px !important;
}

.bg-image-register{
background-image: url("https://images.unsplash.com/photo-1469212044023-0e55b4b9745a?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1510&q=8");
background-repeat: no-repeat;
background-size:cover;
background-position: center center;

}
.bg-image-login{
background-image: url("https://images.unsplash.com/photo-1592135841592-b635e8350ed8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80");
background-repeat: no-repeat;
background-size:cover;
background-position: center center;
height: 100vh;
}




0 comments on commit fd52f2f

Please sign in to comment.