feat: rewrite async style

This commit is contained in:
DiamondThree
2023-01-23 11:36:04 +08:00
parent 0fa44f82dd
commit 9a717f7ed2
5 changed files with 26 additions and 11 deletions
@@ -107,14 +107,14 @@ export const StyledPublishExplanation = styled('div')(() => {
marginBottom: '22px',
};
});
export const StyledWorkspaceName = styled('div')(() => {
export const StyledWorkspaceName = styled('span')(() => {
return {
fontWeight: '400',
fontSize: '18px',
lineHeight: '26px',
};
});
export const StyledWorkspaceType = styled('div')(() => {
export const StyledWorkspaceType = styled('span')(() => {
return {
fontWeight: '500',
fontSize: '18px',
@@ -148,3 +148,9 @@ export const StyledPublishContent = styled('div')(() => {
flexDirection: 'column',
};
});
export const StyleAsync = styled('div')(() => {
return {
marginTop: '64px',
};
});