diff --git a/package.json b/package.json index 7661a99..d68735c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ghost-dao-interface", "private": true, - "version": "0.7.33", + "version": "0.7.34", "type": "module", "scripts": { "dev": "vite", diff --git a/src/App.jsx b/src/App.jsx index 84e1bd9..cf2c8f1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -123,7 +123,7 @@ function App() { const provider = usePublicClient(); const chainId = useChainId(); - const isSmallerScreen = useMediaQuery("(max-width: 1130px)"); + const isSmallerScreen = useMediaQuery("(max-width: 1047px)"); const isSmallScreen = useMediaQuery("(max-width: 600px)"); const { diff --git a/src/components/PageTitle/PageTitle.jsx b/src/components/PageTitle/PageTitle.jsx index 6113a7a..7bee469 100644 --- a/src/components/PageTitle/PageTitle.jsx +++ b/src/components/PageTitle/PageTitle.jsx @@ -2,7 +2,7 @@ import { Box, Typography, useMediaQuery, useTheme } from "@mui/material"; const PageTitle = ({ name, subtitle, noMargin }) => { const theme = useTheme(); - const mobile = useMediaQuery(theme.breakpoints.down("900")); + const mobile = useMediaQuery(theme.breakpoints.down("700")); return ( +