refactor(infra): directory structure (#4615)
This commit is contained in:
@@ -0,0 +1,180 @@
|
||||
import { globalStyle, keyframes, style } from '@vanilla-extract/css';
|
||||
|
||||
export const modalHeaderWrapper = style({});
|
||||
|
||||
globalStyle(`${modalHeaderWrapper} .logo`, {
|
||||
fontSize: 'var(--affine-font-h-3)',
|
||||
fontWeight: 600,
|
||||
color: 'var(--affine-blue)',
|
||||
marginRight: '6px',
|
||||
verticalAlign: 'middle',
|
||||
});
|
||||
|
||||
globalStyle(`${modalHeaderWrapper} > p:first-of-type`, {
|
||||
fontSize: 'var(--affine-font-h-5)',
|
||||
fontWeight: 600,
|
||||
marginBottom: '4px',
|
||||
lineHeight: '28px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
});
|
||||
globalStyle(`${modalHeaderWrapper} > p:last-of-type`, {
|
||||
fontSize: 'var(--affine-font-h-4)',
|
||||
fontWeight: 600,
|
||||
lineHeight: '28px',
|
||||
});
|
||||
|
||||
export const authInputWrapper = style({
|
||||
paddingBottom: '30px',
|
||||
position: 'relative',
|
||||
selectors: {
|
||||
'&.without-hint': {
|
||||
paddingBottom: '20px',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
globalStyle(`${authInputWrapper} label`, {
|
||||
display: 'block',
|
||||
color: 'var(--light-text-color-text-secondary-color, #8E8D91)',
|
||||
marginBottom: '4px',
|
||||
fontSize: 'var(--affine-font-sm)',
|
||||
fontWeight: 600,
|
||||
lineHeight: '22px',
|
||||
});
|
||||
export const formHint = style({
|
||||
fontSize: 'var(--affine-font-sm)',
|
||||
position: 'absolute',
|
||||
bottom: '4px',
|
||||
left: 0,
|
||||
lineHeight: '22px',
|
||||
selectors: {
|
||||
'&.error': {
|
||||
color: 'var(--affine-error-color)',
|
||||
},
|
||||
'&.warning': {
|
||||
color: 'var(--affine-warning-color)',
|
||||
},
|
||||
},
|
||||
});
|
||||
const rotate = keyframes({
|
||||
'0%': { transform: 'rotate(0deg)' },
|
||||
'50%': { transform: 'rotate(180deg)' },
|
||||
'100%': { transform: 'rotate(360deg)' },
|
||||
});
|
||||
export const loading = style({
|
||||
width: '15px',
|
||||
height: '15px',
|
||||
position: 'relative',
|
||||
borderRadius: '50%',
|
||||
overflow: 'hidden',
|
||||
backgroundColor: 'var(--affine-border-color)',
|
||||
selectors: {
|
||||
'&::after': {
|
||||
content: '""',
|
||||
width: '12px',
|
||||
height: '12px',
|
||||
position: 'absolute',
|
||||
left: '0',
|
||||
right: '0',
|
||||
top: '0',
|
||||
bottom: '0',
|
||||
margin: 'auto',
|
||||
backgroundColor: '#fff',
|
||||
zIndex: 2,
|
||||
borderRadius: '50%',
|
||||
},
|
||||
'&::before': {
|
||||
content: '""',
|
||||
width: '20px',
|
||||
height: '20px',
|
||||
backgroundColor: 'var(--affine-blue)',
|
||||
position: 'absolute',
|
||||
left: '50%',
|
||||
bottom: '50%',
|
||||
zIndex: '1',
|
||||
transformOrigin: 'left bottom',
|
||||
animation: `${rotate} 1.5s infinite linear`,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export const authContent = style({
|
||||
fontSize: 'var(--affine-font-base)',
|
||||
lineHeight: 'var(--affine-font-h-3)',
|
||||
marginTop: '30px',
|
||||
});
|
||||
globalStyle(`${authContent} a`, {
|
||||
color: 'var(--affine-link-color)',
|
||||
});
|
||||
|
||||
export const authCodeContainer = style({
|
||||
paddingBottom: '40px',
|
||||
position: 'relative',
|
||||
});
|
||||
export const authCodeWrapper = style({
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
});
|
||||
|
||||
export const authCodeErrorMessage = style({
|
||||
color: 'var(--affine-error-color)',
|
||||
fontSize: 'var(--affine-font-sm)',
|
||||
textAlign: 'center',
|
||||
lineHeight: '1.5',
|
||||
position: 'absolute',
|
||||
left: 0,
|
||||
right: 0,
|
||||
bottom: 5,
|
||||
margin: 'auto',
|
||||
});
|
||||
|
||||
export const resendButtonWrapper = style({
|
||||
height: 32,
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
marginTop: 30,
|
||||
});
|
||||
|
||||
globalStyle(`${resendButtonWrapper} .resend-code-hint`, {
|
||||
fontWeight: 600,
|
||||
fontSize: 'var(--affine-font-sm)',
|
||||
marginRight: 8,
|
||||
});
|
||||
|
||||
export const authPageContainer = style({
|
||||
height: '100vh',
|
||||
width: '100vw',
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
fontSize: 'var(--affine-font-base)',
|
||||
});
|
||||
globalStyle(`${authPageContainer} .wrapper`, {
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
});
|
||||
globalStyle(`${authPageContainer} .content`, {
|
||||
maxWidth: '700px',
|
||||
minWidth: '550px',
|
||||
});
|
||||
|
||||
globalStyle(`${authPageContainer} .title`, {
|
||||
fontSize: 'var(--affine-font-title)',
|
||||
fontWeight: 600,
|
||||
marginBottom: '28px',
|
||||
});
|
||||
|
||||
globalStyle(`${authPageContainer} .subtitle`, {
|
||||
marginBottom: '28px',
|
||||
});
|
||||
globalStyle(`${authPageContainer} a`, {
|
||||
color: 'var(--affine-link-color)',
|
||||
});
|
||||
|
||||
export const signInPageContainer = style({
|
||||
width: '400px',
|
||||
margin: '205px auto 0',
|
||||
});
|
||||
Reference in New Issue
Block a user