Skip to content

Commit

Permalink
use Col component form core component in LoginPanel
Browse files Browse the repository at this point in the history
  • Loading branch information
jitendrasbunde committed May 25, 2020
1 parent a4aaaa0 commit 557d200
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions react-frontend/src/login/LoginPanel.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from "react";
import { Col } from "react-bootstrap";
import PropTypes from "prop-types";
import { AiOutlineMail } from "react-icons/ai";
import Styled from "styled-components";

import LogoComponent from "shared-components/peerly-logo/LogoComponent";
import ButtonComponent from "core-components/Button/ButtonComponent";
import ButtonComponent from "core-components/button/ButtonComponent";
import LoginTextComponent from "shared-components/login-text-component/LoginTextComponent";
import Col from "core-components/col/ColComponent";

const Wrapper = Styled.div`
background: #334856;
Expand All @@ -26,7 +26,7 @@ const LoginPanel = ({
onClick,
}) => (
<Wrapper className="h-100 align-items-center d-flex flex-column">
<FirstCol className="h1">
<FirstCol className="h1 text-white">
<LogoComponent />
</FirstCol>
<Col className="align-items-center d-flex justify-content-center ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import PropTypes from "prop-types";
import { Col } from "react-bootstrap";
import styled from "styled-components";
import LabelComponent from "core-components/Label/LabelComponent";
import LabelComponent from "core-components/label/LabelComponent";

const HrLine = styled.hr`
width: 10%;
Expand Down

0 comments on commit 557d200

Please sign in to comment.