Skip to content

Commit

Permalink
added some more animations
Browse files Browse the repository at this point in the history
  • Loading branch information
nitin42 committed Jul 13, 2017
1 parent 8cac62a commit b8da03f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions components/Terminal.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

.terminal-container-wrapper {
height: 100%;
animation: fadeIn 0.18s ease-in;
}

.terminal-container-wrapper,
Expand All @@ -26,6 +27,21 @@
flex-direction: column;
justify-content: center;
align-items: center;
animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
0% {
opacity: 0;
}

60% {
opacity: 0.6;
}

100% {
opacity: 1;
}
}

.terminal-input-area {
Expand Down

0 comments on commit b8da03f

Please sign in to comment.