Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
feat(app): fade in main content on launch
Browse files Browse the repository at this point in the history
  • Loading branch information
devinus committed Mar 27, 2018
1 parent 72116f3 commit 6139053
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions app/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

@import "history";

@import "pod-styles";

body {
background-image: linear-gradient(-180deg, #000064 0%, #000034 100%);
height: 100vh;
Expand All @@ -26,6 +24,8 @@ main {
display: flex;
flex-direction: column;
justify-content: space-evenly;
will-change: opacity;
animation: fadeIn 1s ease;

hr {
border-top: 1px solid $purple;
Expand Down Expand Up @@ -74,6 +74,15 @@ code {
}
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes loading {
0% {
transform: rotate(0deg);
Expand All @@ -85,3 +94,5 @@ code {
transform: rotate(360deg);
}
}

@import "pod-styles";

0 comments on commit 6139053

Please sign in to comment.