mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
20 lines
369 B
TypeScript
20 lines
369 B
TypeScript
import { displayFlex, styled } from '@affine/component';
|
|
|
|
export const StyledContainer = styled.div(() => {
|
|
return {
|
|
...displayFlex('center', 'center'),
|
|
flexDirection: 'column',
|
|
height: '100vh',
|
|
|
|
img: {
|
|
width: '360px',
|
|
height: '270px',
|
|
},
|
|
p: {
|
|
fontSize: '22px',
|
|
fontWeight: 600,
|
|
margin: '24px 0',
|
|
},
|
|
};
|
|
});
|