Merge branch 'feat/filesystem_and_search' of github.com:toeverything/AFFiNE into feat/filesystem_and_search

This commit is contained in:
JimmFly
2022-12-21 10:54:57 +08:00
2 changed files with 8 additions and 10 deletions
@@ -60,9 +60,9 @@ const rightLinkList = [
},
{
icon: <DocIcon />,
title: 'Check Our Docs',
subTitle: 'docs.AFFiNE.pro',
link: 'https://docs.affine.pro',
title: 'AFFiNE Community',
subTitle: 'community.affine.pro',
link: 'https://community.affine.pro',
},
];
@@ -109,10 +109,7 @@ export const ContactModal = ({ open, onClose }: TransitionsModalProps) => {
})}
</StyledLeftContainer>
<StyledRightContainer>
<StyledSubTitle>
Get in touch! <br />
Join our community.
</StyledSubTitle>
<StyledSubTitle>Get in touch!</StyledSubTitle>
{linkList.map(({ icon, title, link }) => {
return (
<StyledSmallLink key={title} href={link} target="_blank">
@@ -2,10 +2,10 @@ import { absoluteCenter, displayFlex, styled } from '@/styles';
export const StyledBigLink = styled('a')(({ theme }) => {
return {
width: '320px',
width: '334px',
height: '100px',
marginBottom: '48px',
paddingLeft: '114px',
paddingLeft: '90px',
fontSize: '24px',
lineHeight: '36px',
fontWeight: '600',
@@ -29,7 +29,7 @@ export const StyledBigLink = styled('a')(({ theme }) => {
height: '50px',
marginRight: '40px',
color: theme.colors.primaryColor,
...absoluteCenter({ vertical: true, position: { left: '32px' } }),
...absoluteCenter({ vertical: true, position: { left: '20px' } }),
},
p: {
width: '100%',
@@ -85,6 +85,7 @@ export const StyledSmallLink = styled('a')(({ theme }) => {
});
export const StyledSubTitle = styled('div')(({ theme }) => {
return {
width: '190px',
fontSize: '18px',
fontWeight: '600',
color: theme.colors.textColor,