mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-24 04:27:27 +08:00
Merge branch 'feat/filesystem_and_search' of github.com:toeverything/AFFiNE into feat/filesystem_and_search
This commit is contained in:
@@ -60,9 +60,9 @@ const rightLinkList = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: <DocIcon />,
|
icon: <DocIcon />,
|
||||||
title: 'Check Our Docs',
|
title: 'AFFiNE Community',
|
||||||
subTitle: 'docs.AFFiNE.pro',
|
subTitle: 'community.affine.pro',
|
||||||
link: 'https://docs.affine.pro',
|
link: 'https://community.affine.pro',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -109,10 +109,7 @@ export const ContactModal = ({ open, onClose }: TransitionsModalProps) => {
|
|||||||
})}
|
})}
|
||||||
</StyledLeftContainer>
|
</StyledLeftContainer>
|
||||||
<StyledRightContainer>
|
<StyledRightContainer>
|
||||||
<StyledSubTitle>
|
<StyledSubTitle>Get in touch!</StyledSubTitle>
|
||||||
Get in touch! <br />
|
|
||||||
Join our community.
|
|
||||||
</StyledSubTitle>
|
|
||||||
{linkList.map(({ icon, title, link }) => {
|
{linkList.map(({ icon, title, link }) => {
|
||||||
return (
|
return (
|
||||||
<StyledSmallLink key={title} href={link} target="_blank">
|
<StyledSmallLink key={title} href={link} target="_blank">
|
||||||
|
|||||||
@@ -2,10 +2,10 @@ import { absoluteCenter, displayFlex, styled } from '@/styles';
|
|||||||
|
|
||||||
export const StyledBigLink = styled('a')(({ theme }) => {
|
export const StyledBigLink = styled('a')(({ theme }) => {
|
||||||
return {
|
return {
|
||||||
width: '320px',
|
width: '334px',
|
||||||
height: '100px',
|
height: '100px',
|
||||||
marginBottom: '48px',
|
marginBottom: '48px',
|
||||||
paddingLeft: '114px',
|
paddingLeft: '90px',
|
||||||
fontSize: '24px',
|
fontSize: '24px',
|
||||||
lineHeight: '36px',
|
lineHeight: '36px',
|
||||||
fontWeight: '600',
|
fontWeight: '600',
|
||||||
@@ -29,7 +29,7 @@ export const StyledBigLink = styled('a')(({ theme }) => {
|
|||||||
height: '50px',
|
height: '50px',
|
||||||
marginRight: '40px',
|
marginRight: '40px',
|
||||||
color: theme.colors.primaryColor,
|
color: theme.colors.primaryColor,
|
||||||
...absoluteCenter({ vertical: true, position: { left: '32px' } }),
|
...absoluteCenter({ vertical: true, position: { left: '20px' } }),
|
||||||
},
|
},
|
||||||
p: {
|
p: {
|
||||||
width: '100%',
|
width: '100%',
|
||||||
@@ -85,6 +85,7 @@ export const StyledSmallLink = styled('a')(({ theme }) => {
|
|||||||
});
|
});
|
||||||
export const StyledSubTitle = styled('div')(({ theme }) => {
|
export const StyledSubTitle = styled('div')(({ theme }) => {
|
||||||
return {
|
return {
|
||||||
|
width: '190px',
|
||||||
fontSize: '18px',
|
fontSize: '18px',
|
||||||
fontWeight: '600',
|
fontWeight: '600',
|
||||||
color: theme.colors.textColor,
|
color: theme.colors.textColor,
|
||||||
|
|||||||
Reference in New Issue
Block a user