Display logo as main hero

This commit is contained in:
Chun-MingChen
2018-10-07 17:17:14 +08:00
parent 2c1a4229f5
commit c0a1644d45
2 changed files with 12 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ const SplashContainer = props => (
);
const Logo = props => (
<div className="projectLogo">
<div className="logo">
<img src={props.img_src} />
</div>
);

View File

@@ -15,12 +15,21 @@
@media only screen and (min-width: 1500px) {
}
/* Footer */
footer.nav-footer {
background-color: #202020;
}
.navGroup ul {
background-color: #f9f9f9;
/* Home */
.logo {
display: flex;
justify-content: center;
}
.logo img {
height: 100%;
max-height: 250px;
margin-bottom: 0px;
}
.homeContainer .homeWrapper .projectLogo {