feat: move theme switch and language switch to editor option menu (#2025)

Co-authored-by: himself65 <himself65@outlook.com>
This commit is contained in:
JimmFly
2023-04-28 17:28:51 +08:00
committed by GitHub
parent 903b6eaf30
commit 2ff5ef9d5d
12 changed files with 347 additions and 193 deletions

View File

@@ -167,3 +167,16 @@ export const StyledQuickSearchTipContent = styled('div')(() => {
flexDirection: 'column',
};
});
export const StyledHorizontalDivider = styled('div')(() => {
return {
width: '100%',
borderTop: `1px solid var(--affine-border-color)`,
};
});
export const StyledHorizontalDividerContainer = styled('div')(() => {
return {
width: '100%',
padding: '14px',
};
});