Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 10054448 authored by Zamil Majdy's avatar Zamil Majdy
Browse files

Merge ListingApplicants into userstory3

parents 0495fbed 831a40e2
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,9 @@ background-color: #EEEEEE; ...@@ -19,7 +19,9 @@ background-color: #EEEEEE;
} }
.create-lowongan{ .create-lowongan{
margin: 60px 19% 100px; padding-bottom: 7%;
padding-left:15%;
padding-right:15%;
} }
.ui.segment.form-segment{ .ui.segment.form-segment{
...@@ -176,8 +178,27 @@ card .formRegis{ ...@@ -176,8 +178,27 @@ card .formRegis{
margin-top:4%; margin-top:4%;
} }
.profilePage{ .profilePage {
margin-bottom:40px; margin-bottom: 40px;
margin-left:5%; margin-left: 5%;
margin-right:5%; margin-right: 5%;
}
#react-app{
position: relative; /* needed for footer positioning*/
height: auto !important; /* real browsers */
min-height: 100%; /* real browsers */
background-color: #EEEEEE;
}
.footer{
background-color: #031634;
position: absolute;
bottom: 0;
width: 100%;
padding:1%;
}
.footer h5{
color:white;
} }
\ No newline at end of file
import React from 'react'; import React from 'react';
import TopMenu from './components/TopMenu'; import TopMenu from './components/TopMenu';
import Footer from './components/Footer'
export default class Dashboard extends React.Component { export default class Dashboard extends React.Component {
static propTypes = { static propTypes = {
...@@ -13,6 +14,7 @@ export default class Dashboard extends React.Component { ...@@ -13,6 +14,7 @@ export default class Dashboard extends React.Component {
<div> <div>
<TopMenu /> <TopMenu />
{this.props.children} {this.props.children}
<Footer/>
</div> </div>
) )
} }
import React from 'react';
import { Container } from 'semantic-ui-react';
export default class Footer extends React.Component {
render() {
return (
<div className="footer">
<Container textAlign="center">
<h5>All Rights Reserved © 2017</h5>
</Container>
</div>
);
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment