Skip to content

Instantly share code, notes, and snippets.

@jonboiser
Created January 12, 2017 22:29
Show Gist options
  • Save jonboiser/d5d9addfda5d6701e6aac60658bdd456 to your computer and use it in GitHub Desktop.
Save jonboiser/d5d9addfda5d6701e6aac60658bdd456 to your computer and use it in GitHub Desktop.
rtg example
@media (min-width: 769px) {
.mark-all-read{
margin-left: auto;
}
}
@media (max-width: 768px) {
.date-time{
font-size: 1rem;
}
}
.example-enter {
opacity: 0.01;
}
.example-enter.example-enter-active {
opacity: 1;
transition: opacity 500ms ease-in;
}
.example-leave {
opacity: 1;
}
.example-leave.example-leave-active {
opacity: 0.01;
transition: opacity 300ms ease-in;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment