17 lines
234 B
SCSS
17 lines
234 B
SCSS
@keyframes left-shift-animation {
|
|
0%,
|
|
100% {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
50% {
|
|
transform: translateX(1px);
|
|
}
|
|
}
|
|
|
|
.conversation {
|
|
&.active {
|
|
animation: left-shift-animation 0.25s $swift-ease-out-function;
|
|
}
|
|
}
|