ci(release): publish latest release

parent a4628152
IPFS hash of the deployment:
- CIDv0: `QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w`
- CIDv1: `bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea`
- CIDv0: `QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe`
- CIDv1: `bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
......@@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.dweb.link/
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.cf-ipfs.com/
- [ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/](ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/)
- https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.dweb.link/
- https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.cf-ipfs.com/
- [ipfs://QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe/](ipfs://QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe/)
### 5.25.5 (2024-04-30)
### 5.25.6 (2024-05-02)
### Bug Fixes
* **web:** hotfix performance issue with floating text on homepage (#7952) eca0be7
web/5.25.5
\ No newline at end of file
web/5.25.6
\ No newline at end of file
import { motion } from 'framer-motion'
import styled, { css, keyframes } from 'styled-components'
type RiseInProps = {
delay?: number
children?: React.ReactNode
}
const riseInAnimation = keyframes`
0% {
opacity: 0;
......@@ -41,24 +36,20 @@ export const RiseIn = styled.span<{ delay?: number }>`
${RiseInStyles}
`
export const Hover = (props: RiseInProps) => {
return (
<motion.div
animate={{
y: ['-4px', '4px', '-4px'],
opacity: [0.5, 1, 0.5],
}}
transition={{
duration: 2,
repeat: Infinity, // repeat animation forever
ease: 'easeInOut',
}}
style={{ display: 'inline-block', position: 'relative' }}
>
{props.children}
</motion.div>
)
}
const hoverAnimation = keyframes`
0% { transform: translateY(-4px); opacity: 0.5; }
50% { transform: translateY(4px); opacity: 1; }
100% { transform: translateY(-4px); opacity: 0.5; }
`
export const Hover = styled.div`
position: relative;
display: inline-block;
animation-name: ${hoverAnimation};
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
`
export function Wiggle({ ...props }) {
const variants = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment