ci(release): publish latest release

parent 77509223
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED` - CIDv0: `QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb`
- CIDv1: `bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli` - CIDv1: `bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). 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. ...@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli.ipfs.dweb.link/ - https://bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i.ipfs.dweb.link/
- https://bafybeihjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbmli.ipfs.cf-ipfs.com/ - https://bafybeibkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6i.ipfs.cf-ipfs.com/
- [ipfs://Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED/](ipfs://Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED/) - [ipfs://QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb/](ipfs://QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb/)
### 5.59.2 (2024-11-21) ### 5.59.3 (2024-11-21)
### Bug Fixes ### 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 web/5.59.3
\ No newline at end of file \ No newline at end of file
...@@ -9,9 +9,6 @@ const NavDropdownContent = styled(Flex, { ...@@ -9,9 +9,6 @@ const NavDropdownContent = styled(Flex, {
borderColor: '$surface2', borderColor: '$surface2',
backgroundColor: '$surface1', backgroundColor: '$surface1',
maxHeight: `calc(100dvh - ${INTERFACE_NAV_HEIGHT * 2}px)`, 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: { $sm: {
width: '100%', width: '100%',
borderRadius: '$none', borderRadius: '$none',
...@@ -23,6 +20,16 @@ const NavDropdownContent = styled(Flex, { ...@@ -23,6 +20,16 @@ const NavDropdownContent = styled(Flex, {
overflowY: 'auto', overflowY: 'auto',
overflowX: 'hidden', 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 { interface NavDropdownProps {
...@@ -31,9 +38,10 @@ interface NavDropdownProps { ...@@ -31,9 +38,10 @@ interface NavDropdownProps {
width?: number width?: number
dropdownRef?: RefObject<HTMLDivElement> dropdownRef?: RefObject<HTMLDivElement>
dataTestId?: string 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 shadowProps = useShadowPropsMedium()
const scrollbarStyles = useScrollbarStyles() const scrollbarStyles = useScrollbarStyles()
...@@ -60,6 +68,7 @@ export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId } ...@@ -60,6 +68,7 @@ export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId }
data-testid={dataTestId} data-testid={dataTestId}
ref={dropdownRef} ref={dropdownRef}
width={width} width={width}
padded={padded}
{...shadowProps} {...shadowProps}
style={scrollbarStyles} style={scrollbarStyles}
> >
......
...@@ -39,7 +39,7 @@ export function PreferenceMenu() { ...@@ -39,7 +39,7 @@ export function PreferenceMenu() {
<Global size={20} color="$neutral2" cursor="pointer" /> <Global size={20} color="$neutral2" cursor="pointer" />
</NavIcon> </NavIcon>
</Popover.Trigger> </Popover.Trigger>
<NavDropdown width={325} isOpen={isOpen}> <NavDropdown width={325} isOpen={isOpen} padded>
<NavDropdownDefaultWrapper> <NavDropdownDefaultWrapper>
<AnimateTransition <AnimateTransition
currentIndex={getSettingsViewIndex(settingsView)} 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