ci(release): publish latest release

parent 77509223
IPFS hash of the deployment:
- CIDv0: `Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED`
- CIDv1: `bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli`
- CIDv0: `QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb`
- CIDv1: `bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
......@@ -10,15 +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://bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli.ipfs.dweb.link/
- https://bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli.ipfs.cf-ipfs.com/
- [ipfs://Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED/](ipfs://Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED/)
- https://bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i.ipfs.dweb.link/
- https://bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i.ipfs.cf-ipfs.com/
- [ipfs://QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb/](ipfs://QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb/)
### 5.59.2 (2024-11-21)
### 5.59.3 (2024-11-21)
### Bug Fixes
* **web:** round rect bug prod (#13972) 8ff327e
* **web:** only pad preference menu instead of all nav [prod] (#13994) 1809d8c
web/5.59.2
\ No newline at end of file
web/5.59.3
\ No newline at end of file
......@@ -9,9 +9,6 @@ const NavDropdownContent = styled(Flex, {
borderColor: '$surface2',
backgroundColor: '$surface1',
maxHeight: `calc(100dvh - ${INTERFACE_NAV_HEIGHT * 2}px)`,
py: '12px',
pl: '16px',
pr: '4px', // Smaller right padding allows scrollbar to be closer to container edge
$sm: {
width: '100%',
borderRadius: '$none',
......@@ -23,6 +20,16 @@ const NavDropdownContent = styled(Flex, {
overflowY: 'auto',
overflowX: 'hidden',
},
variants: {
padded: {
true: {
py: '12px',
pl: '16px',
pr: '4px', // Smaller right padding allows scrollbar to be closer to container edge
},
false: {},
},
},
})
interface NavDropdownProps {
......@@ -31,9 +38,10 @@ interface NavDropdownProps {
width?: number
dropdownRef?: RefObject<HTMLDivElement>
dataTestId?: string
padded?: boolean
}
export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId }: NavDropdownProps) {
export function NavDropdown({ children, width, dropdownRef, isOpen, padded, dataTestId }: NavDropdownProps) {
const shadowProps = useShadowPropsMedium()
const scrollbarStyles = useScrollbarStyles()
......@@ -60,6 +68,7 @@ export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId }
data-testid={dataTestId}
ref={dropdownRef}
width={width}
padded={padded}
{...shadowProps}
style={scrollbarStyles}
>
......
......@@ -39,7 +39,7 @@ export function PreferenceMenu() {
<Global size={20} color="$neutral2" cursor="pointer" />
</NavIcon>
</Popover.Trigger>
<NavDropdown width={325} isOpen={isOpen}>
<NavDropdown width={325} isOpen={isOpen} padded>
<NavDropdownDefaultWrapper>
<AnimateTransition
currentIndex={getSettingsViewIndex(settingsView)}
......
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