Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/TopInfoPanel/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading