mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
Add .heart class + keyframes
This commit is contained in:
parent
3dbc83e635
commit
7ddf16da6a
1 changed files with 14 additions and 0 deletions
|
@ -291,3 +291,17 @@ button > i.fas {
|
|||
border-bottom-right-radius: 0.35rem;
|
||||
}
|
||||
|
||||
@keyframes heart {
|
||||
0%, 40%, 80%, 100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
20%, 60% {
|
||||
transform: scale(1.15);
|
||||
}
|
||||
}
|
||||
|
||||
.heart {
|
||||
color: #e63946;
|
||||
animation: heart 1000ms infinite;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue