Skip to content

Commit c9eeabf

Browse files
committed
Merge branch 'develop' into feature/park
2 parents 53de576 + eb8bad8 commit c9eeabf

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

index.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,7 @@
1313
crossorigin
1414
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css"
1515
/>
16-
<link
17-
href="https://hangeul.pstatic.net/hangeul_static/css/nanum-myeongjo.css"
18-
rel="stylesheet"
19-
/>
20-
<link
21-
href="https://hangeul.pstatic.net/hangeul_static/css/NanumSonPyeonJiCe.css"
22-
rel="stylesheet"
23-
/>
16+
2417
<link rel="icon" type="image/svg+xml" href="/src/assets/images/logo.svg" />
2518
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2619
<title>Rolling – 마음을 실은 종이비행기</title>

src/pages/Recipient/Recipient.module.scss

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,24 @@
5656
background: none;
5757
border: none;
5858
cursor: pointer;
59-
color: $white;
60-
transition:
61-
color 0.3s ease,
62-
transform 0.3s ease;
59+
color: $black;
60+
transition: transform 0.3s ease;
61+
animation: color-change 2s infinite alternate;
6362
@include font-18-bold;
6463

6564
&:hover {
65+
animation:
66+
shake 0.5s ease,
67+
color-change 2s infinite alternate;
68+
}
69+
}
70+
71+
@keyframes color-change {
72+
0% {
6673
color: $black;
67-
animation: shake 0.5s ease;
68-
animation-iteration-count: 1;
74+
}
75+
100% {
76+
color: $white;
6977
}
7078
}
7179

0 commit comments

Comments
 (0)