Skip to content

Commit

Permalink
chore: fix transitions
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Oct 14, 2020
1 parent 0308c80 commit c73e049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## (2020-10-13)
## (2020-10-14)

- chore: add code of conduct ([6859555](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/6859555))
- chore: add identicons ([45ddea1](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/45ddea1))
Expand Down Expand Up @@ -59,6 +59,7 @@
- chore: improve checkboxes and forms ([1e635bb](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/1e635bb))
- chore: improve colors and gradients ([82c441d](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/82c441d))
- chore: improve ETH network API ([a497b47](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/a497b47))
- chore: improve evidence cards ([0308c80](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/0308c80))
- chore: improve evidence cards ([4f0b4d3](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/4f0b4d3))
- chore: improve inputs and card hovers ([731ed8c](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/731ed8c))
- chore: improve more micro interactions ([69e17cd](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/69e17cd))
Expand Down
4 changes: 2 additions & 2 deletions pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,12 @@ export default function App({ Component, pageProps }) {
[{ key: router.route, Component, pageProps }],
(item) => item.key,
{
from: { opacity: 0, transform: "translate3d(100%,0,0)" },
from: { opacity: 0, transform: "translate3d(0%,0,0)" },
enter: { opacity: 1, transform: "translate3d(0%,0,0)" },
leave: {
opacity: 0,
position: "absolute",
transform: "translate3d(-50%,0,0)",
transform: "translate3d(-100%,0,0)",
},
}
);
Expand Down

0 comments on commit c73e049

Please sign in to comment.