Skip to content

Commit

Permalink
호버 애니메이션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
riroan committed Apr 9, 2024
1 parent 021cdbe commit 973c0e8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion riroan/src/components/Utility/Utility.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@
right: 50px;
bottom: 50px;
border-radius: 35px;
font-size: 30px;
font-size: 35px;
margin-top: 20px;
}

.container:hover {
font-size: 40px;
transition: font-size 0.1s ease 0s;
}
}

@media screen and (max-width: 767px) {
Expand All @@ -32,6 +37,11 @@
font-size: 20px;
margin-top: 10px;
}

.container:hover {
font-size: 25px;
transition: font-size 0.1s ease 0s;
}
}

.container:hover {
Expand Down

0 comments on commit 973c0e8

Please sign in to comment.