mirror of
https://github.com/go-gitea/gitea
synced 2025-07-13 14:07:20 +00:00
Improve reviewing PR UX (#19612)
This commit is contained in:
@ -50,3 +50,19 @@
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.8);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.pulse {
|
||||
animation: pulse 2s linear;
|
||||
}
|
||||
|
Reference in New Issue
Block a user