Skip to content

Commit

Permalink
πŸ› Fix: λžœλ”© λ””μžμΈ μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
JayChae committed May 15, 2024
1 parent be19230 commit f86fc6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/LandingPage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const LadingPage = () => {
</div>
<motion.img
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
whileInView={{ opacity: 0.4 }}
viewport={{ once: false }}
transition={{
ease: 'easeInOut',
Expand Down
5 changes: 4 additions & 1 deletion src/pages/LandingPage/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
position: absolute;
width: 932px;
height: 781px;
opacity: 50%;
opacity: 40%;
z-index: 0;

@media (max-width: $width-tablet) {
Expand All @@ -95,14 +95,17 @@
}

p {
margin-top: 45px;
z-index: 1;
@include font-base(white, 700, 26px, 31px);
text-align: center;

@media (max-width: $width-tablet) {
margin-top: 0;
@include font-base(white, 700, 20px, 24px);
}
@media (max-width: $width-mobile) {
margin-top: 0;
@include font-base(white, 400, 20px, 24px);
}

Expand Down

0 comments on commit f86fc6b

Please sign in to comment.