fixed bell

This commit is contained in:
Eugene Pankov
2021-05-13 17:30:48 +02:00
parent c9367d04c3
commit ee368a3716
3 changed files with 32 additions and 3 deletions

View File

@@ -118,4 +118,23 @@ ngb-typeahead-window {
&:hover {
opacity: 1;
}
}
}
@keyframes terminalShakeFrames {
0% {
transform: translateX(0);
}
25% {
transform: translateX(5px);
}
50% {
transform: translateX(-5px);
}
75% {
transform: translateX(5px);
}
100% {
transform: translateX(0);
}
}