WOAHHH COOL PROFILE!! HOW DID YOU DI THE FLOATING ICON?
TYSM!!
}
.profile_avatar {
animation: float 3s infinite;
}
@keyframes float {
0% { transform: translateY(-0.5rem); }
50% { transform: translateY(0rem); }
100% { transform: translateY(-0.5rem); }
} Here's the code for it! You can change the distance in which it floats by changing the number before "rem"
Reactions
Comments
Leave a comment
NGL I don't know why some of it is in a box and some of it isn't in the response, but the code starts at the first } and ends at the last }, they need to be included as well so fyi on that