mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-01 22:29:44 +08:00
41 lines
763 B
TypeScript
41 lines
763 B
TypeScript
import { Button, styled } from '@affine/component';
|
|
|
|
export const Header = styled('div')({
|
|
height: '44px',
|
|
display: 'flex',
|
|
flexDirection: 'row-reverse',
|
|
paddingRight: '10px',
|
|
paddingTop: '10px',
|
|
flexShrink: 0,
|
|
});
|
|
|
|
export const Content = styled('div')({
|
|
textAlign: 'center',
|
|
});
|
|
|
|
export const ContentTitle = styled('h1')({
|
|
fontSize: '20px',
|
|
lineHeight: '28px',
|
|
fontWeight: 600,
|
|
textAlign: 'center',
|
|
});
|
|
|
|
export const StyleTips = styled('div')(() => {
|
|
return {
|
|
userSelect: 'none',
|
|
width: '400px',
|
|
margin: 'auto',
|
|
marginBottom: '32px',
|
|
marginTop: '12px',
|
|
};
|
|
});
|
|
|
|
export const StyleButton = styled(Button)(() => {
|
|
return {
|
|
width: '284px',
|
|
display: 'block',
|
|
margin: 'auto',
|
|
marginTop: '16px',
|
|
};
|
|
});
|