Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Fasilkom UI Open Source Software
Kape
Commits
10054448
Commit
10054448
authored
Apr 26, 2017
by
Zamil Majdy
Browse files
Merge ListingApplicants into userstory3
parents
0495fbed
831a40e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
assets/css/custom.css
View file @
10054448
...
...
@@ -19,7 +19,9 @@ background-color: #EEEEEE;
}
.create-lowongan
{
margin
:
60px
19%
100px
;
padding-bottom
:
7%
;
padding-left
:
15%
;
padding-right
:
15%
;
}
.ui.segment.form-segment
{
...
...
@@ -176,8 +178,27 @@ card .formRegis{
margin-top
:
4%
;
}
.profilePage
{
margin-bottom
:
40px
;
margin-left
:
5%
;
margin-right
:
5%
;
.profilePage
{
margin-bottom
:
40px
;
margin-left
:
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
assets/js/Dashboard.jsx
View file @
10054448
import
React
from
'
react
'
;
import
TopMenu
from
'
./components/TopMenu
'
;
import
Footer
from
'
./components/Footer
'
export
default
class
Dashboard
extends
React
.
Component
{
static
propTypes
=
{
...
...
@@ -13,6 +14,7 @@ export default class Dashboard extends React.Component {
<
div
>
<
TopMenu
/>
{
this
.
props
.
children
}
<
Footer
/>
</
div
>
)
}
assets/js/components/Footer.jsx
0 → 100644
View file @
10054448
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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment