diff --git a/apps/web/src/components/blocksuite/block-suite-page-list/page-list/OperationCell.tsx b/apps/web/src/components/blocksuite/block-suite-page-list/page-list/OperationCell.tsx index e4c8c65b23..818671d5fc 100644 --- a/apps/web/src/components/blocksuite/block-suite-page-list/page-list/OperationCell.tsx +++ b/apps/web/src/components/blocksuite/block-suite-page-list/page-list/OperationCell.tsx @@ -74,14 +74,16 @@ export const OperationCell: React.FC = ({ > {favorite ? t('Remove from favorites') : t('Add to Favorites')} - { - onOpenPageInNewTab(id); - }} - icon={} - > - {t('Open in new tab')} - + {!environment.isDesktop && ( + { + onOpenPageInNewTab(id); + }} + icon={} + > + {t('Open in new tab')} + + )} {!pageMeta.isRootPinboard && ( { justifyContent: 'center', alignItems: 'center', color: '#6880FF', + flexDirection: 'column', h1: { fontSize: '2em', marginTop: '15px', @@ -38,10 +39,8 @@ export const PageLoading = ({ text }: { text?: string }) => { const { t } = useTranslation(); return ( -
- -

{text ? text : t('Loading')}

-
+ +

{text ? text : t('Loading')}

); };