Add copyright notice
This commit is contained in:
@ -61,6 +61,7 @@ class Layout extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<WindowSize onChange={this.adjustUnderline}/>
|
<WindowSize onChange={this.adjustUnderline}/>
|
||||||
|
<div className="wrapper">
|
||||||
<header>
|
<header>
|
||||||
<h1>unpkg</h1>
|
<h1>unpkg</h1>
|
||||||
<nav>
|
<nav>
|
||||||
@ -83,7 +84,13 @@ class Layout extends React.Component {
|
|||||||
</Motion>
|
</Motion>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
</div>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
|
<div className="wrapper">
|
||||||
|
<footer>
|
||||||
|
<p>© 2016-{(new Date).getFullYear()} Michael Jackson</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -62,7 +62,7 @@ table th, table td {
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
header, .wrapper {
|
.wrapper {
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
@ -125,3 +125,10 @@ header nav a:visited {
|
|||||||
.about-logo img {
|
.about-logo img {
|
||||||
max-width: 60%;
|
max-width: 60%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
margin-top: 40px;
|
||||||
|
border-top: 1px solid black;
|
||||||
|
font-size: 0.8em;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user