start styled log in migration
This commit is contained in:
parent
05062286fd
commit
5867a8254b
|
@ -6,6 +6,22 @@ import Footer from './Footer';
|
||||||
|
|
||||||
import '../login_reg.css';
|
import '../login_reg.css';
|
||||||
|
|
||||||
|
const BaseApp = styled.div`
|
||||||
|
display: flex;
|
||||||
|
color: white;
|
||||||
|
height:100vh;
|
||||||
|
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Aside = styled.div`
|
||||||
|
width: 50%;
|
||||||
|
background-color: #66bfbf;
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
`;
|
||||||
|
|
||||||
const LogInContainer = (props) => {
|
const LogInContainer = (props) => {
|
||||||
return (
|
return (
|
||||||
<BrowserRouter basename="user">
|
<BrowserRouter basename="user">
|
||||||
|
|
|
@ -1,16 +1,8 @@
|
||||||
@import url('https://fonts.googleapis.com/css?family=Montserrat|Ubuntu');
|
@import url('https://fonts.googleapis.com/css?family=Montserrat|Ubuntu');
|
||||||
.Apper {
|
.Apper {
|
||||||
display: flex;
|
|
||||||
color: white;
|
|
||||||
height:100vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.Apper__Aside {
|
.Apper__Aside {
|
||||||
width: 50%;
|
|
||||||
background-color: #66bfbf;
|
|
||||||
display:flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-end;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue