From c73e049a955aee1e632399972a047ab6aabde3ee Mon Sep 17 00:00:00 2001 From: epiqueras Date: Wed, 14 Oct 2020 13:26:56 -0400 Subject: [PATCH] chore: fix transitions --- README.md | 3 ++- pages/_app.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d886ce5f..4617fff7 100644 --- a/README.md +++ b/README.md @@ -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)) @@ -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)) diff --git a/pages/_app.js b/pages/_app.js index 36766d7b..fb9fdd54 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -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)", }, } );