mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
fix: add some tips for livedemo
This commit is contained in:
@@ -88,6 +88,11 @@ export function Page(props: PageProps) {
|
||||
{activeTab === TabMap.get(TAB_TITLE.TOC).value && (
|
||||
<TOC />
|
||||
)}
|
||||
{activeTab === TabMap.get(TAB_TITLE.GALLERY).value && (
|
||||
<StyledTextForGallery>
|
||||
Gallery coming soon...
|
||||
</StyledTextForGallery>
|
||||
)}
|
||||
</WorkspaceSidebarContent>
|
||||
</WorkspaceSidebar>
|
||||
</LigoLeftContainer>
|
||||
@@ -202,3 +207,12 @@ const WorkspaceSidebarContent = styled('div')({
|
||||
overflow: 'hidden auto',
|
||||
marginTop: '18px',
|
||||
});
|
||||
|
||||
const StyledTextForGallery = styled('div')(({ theme }) => {
|
||||
return {
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
color: theme.affine.palette.menu,
|
||||
marginTop: theme.affine.spacing.lgSpacing,
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user