From cec7a78f6246c20e8437d9c5395ab7049e481c4c Mon Sep 17 00:00:00 2001 From: Alejandro <95312462+AGMASO@users.noreply.github.com> Date: Fri, 10 Oct 2025 16:13:01 +0200 Subject: [PATCH] fix: fixed responsive issue with favourited buttom --- src/components/TopInfoPanel/PageTitle.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/TopInfoPanel/PageTitle.tsx b/src/components/TopInfoPanel/PageTitle.tsx index 1bb0ef709a..69c9ebe9ad 100644 --- a/src/components/TopInfoPanel/PageTitle.tsx +++ b/src/components/TopInfoPanel/PageTitle.tsx @@ -93,7 +93,8 @@ export const PageTitle = ({ onClick={handleFavoriteClick} variant="surface" sx={{ - display: { xs: 'none', sm: 'flex' }, // Hide on mobile (xs), show on small screens and up + display: 'none', + [theme.breakpoints.up(800)]: { display: 'flex' }, // Hide on mobile (xs) and for widths between 759px and 800px, show on small screens and up p: '7px 8px', minWidth: 'unset', gap: 2,