Merge pull request #469 from toeverything/fix/livedemo-bugs

fix: livedemo infomation color & copies
This commit is contained in:
zuomeng wang
2022-09-29 11:44:18 +08:00
committed by GitHub
3 changed files with 9 additions and 5 deletions
@@ -54,7 +54,7 @@ export const LayoutHeader = () => {
<StyledHelper>
<Tooltip
placement="bottom-end"
content="Share function coming soon"
content="Share function coming soon..."
>
<StyledShare disabled={true}>
{t('Share')}
@@ -63,7 +63,7 @@ export const LayoutHeader = () => {
<div style={{ margin: '0px 12px' }}>
<Tooltip
placement="bottom-end"
content="Search function coming soon"
content="Search function coming soon..."
>
<IconButton
size="large"
@@ -82,7 +82,7 @@ const CloseContainer = styled('div')(({ theme }) => ({
borderRadius: '6px',
'&:hover': {
backgroundColor: theme.affine.palette.tagHover,
backgroundColor: '#EDF3FF',
},
}));
@@ -123,10 +123,14 @@ const LeftButtonContainer = styled('a')(({ theme }) => ({
color: theme.affine.palette.primary,
height: '110px',
cursor: 'pointer',
padding: '6px 12px',
padding: '6px 24px 6px 28px',
borderRadius: '10px',
textDecoration: 'none',
'&:hover': {
backgroundColor: 'rgba(68, 97, 242, 0.1)',
},
'& + &': {
marginTop: '50px',
},
@@ -146,7 +150,7 @@ const LeftButtonText = styled('span')({
color: '#000',
fontSize: '24px',
lineHeight: '36px',
width: '200px',
width: '180px',
marginLeft: '40px',
cursor: 'pointer',
});