mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-23 20:18:42 +08:00
fix: style ui
This commit is contained in:
@@ -109,12 +109,15 @@ export const PageView: FC<CreateView> = ({ block, editor }) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const PageTitleBlock = styled('div')({
|
const PageTitleBlock = styled('div')(({ theme }) => {
|
||||||
'.title': {
|
return {
|
||||||
fontSize: Theme.typography.page.fontSize,
|
'.title': {
|
||||||
lineHeight: Theme.typography.page.lineHeight,
|
fontSize: theme.affine.typography.page.fontSize,
|
||||||
},
|
lineHeight: theme.affine.typography.page.lineHeight,
|
||||||
'.content': {
|
fontWeight: theme.affine.typography.page.fontWeight,
|
||||||
outline: 'none',
|
},
|
||||||
},
|
'.content': {
|
||||||
|
outline: 'none',
|
||||||
|
},
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user