Skip to content

Commit

Permalink
Merge pull request #42 from SoluxProject/feature/#41
Browse files Browse the repository at this point in the history
홈 intro 눈송이 로그인 전에만 나오도록 수정, 배경 색상 변경
  • Loading branch information
Serin-Kim authored Aug 20, 2021
2 parents 2ff7028 + b990989 commit b072285
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,8 @@ nav {
} */

.introSection {
background-color: #ffffff;
/* background-color: #ffffff; */
background-color: var(--color-beige);
/* opacity: 0.7; */
height: 640px;
padding-top: 50px;
Expand Down
12 changes: 10 additions & 2 deletions src/component/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,17 @@ function Home() {
</div>
</section>

<section className="introSection">
{isLoggedIn ?
(
<div></div>
) :
(
<section className="introSection">
<img src="../img/sweetme_logo.png" alt="Sweet Me" width="700" height="500"></img>
</section>
</section>
)
}




Expand Down

0 comments on commit b072285

Please sign in to comment.