fix: some minor ui issues (#2058)

This commit is contained in:
Peng Xiao 2023-04-21 13:56:42 +08:00 committed by GitHub
parent 01115f8957
commit 5a124831b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 12 deletions

View File

@ -74,6 +74,7 @@ export const OperationCell: React.FC<OperationCellProps> = ({
>
{favorite ? t('Remove from favorites') : t('Add to Favorites')}
</MenuItem>
{!environment.isDesktop && (
<MenuItem
onClick={() => {
onOpenPageInNewTab(id);
@ -82,6 +83,7 @@ export const OperationCell: React.FC<OperationCellProps> = ({
>
{t('Open in new tab')}
</MenuItem>
)}
{!pageMeta.isRootPinboard && (
<MoveTo
metas={metas}

View File

@ -26,6 +26,7 @@ const StyledLoadingContainer = styled('div')(() => {
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 (
<StyledLoadingContainer>
<div className="wrapper">
<Loading />
<h1>{text ? text : t('Loading')}</h1>
</div>
</StyledLoadingContainer>
);
};