Skip to content

Commit

Permalink
Add transition effect to app title
Browse files Browse the repository at this point in the history
  • Loading branch information
Pma913 committed Mar 15, 2024
1 parent 50fc57d commit a2e597a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Header/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@

.app-title {
font-size: xxx-large;
transition: text-shadow 0.56s ease-in-out;
}

.app-title:hover {
text-shadow: 2px 0px 20px #8d9da1
text-shadow: #ffffbf 0 0 20px,
#6effe4 0 0 40px;
}

.app-title:active {
text-shadow: unset;
transition: unset;
}

.link,
Expand Down

0 comments on commit a2e597a

Please sign in to comment.