Skip to content

Commit

Permalink
Keyframe animation for task log sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Sep 21, 2022
1 parent 3aaec14 commit 97fd8d3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ui/app/styles/components/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ $subNavOffset: 49px;
}

.task-context-sidebar {
animation-name: slideFromRight;
animation-duration: 150ms;
animation-fill-mode: both;

header {
display: grid;
justify-content: left;
Expand Down Expand Up @@ -118,3 +122,12 @@ $subNavOffset: 49px;
);
}
}

@keyframes slideFromRight {
from {
transform: translateX(100%);
}
to {
transform: translateX(0%);
}
}

0 comments on commit 97fd8d3

Please sign in to comment.