mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
fix: rename shadowSxDownLg -> shadow1
This commit is contained in:
@@ -64,7 +64,7 @@ const StyledContainerForAddCommentContainer = styled('div')(({ theme }) => {
|
||||
zIndex: 1,
|
||||
display: 'flex',
|
||||
borderRadius: theme.affine.shape.borderRadius,
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
backgroundColor: theme.affine.palette.white,
|
||||
};
|
||||
});
|
||||
|
||||
@@ -31,7 +31,7 @@ const RootContainer = styled('div')(({ theme }) => {
|
||||
width: 352,
|
||||
maxHeight: 525,
|
||||
borderRadius: '10px',
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
backgroundColor: '#fff',
|
||||
padding: '8px 4px',
|
||||
};
|
||||
|
||||
@@ -82,6 +82,6 @@ const ToolbarContainer = styled('div')(({ theme }) => ({
|
||||
alignItems: 'center',
|
||||
padding: '0 12px',
|
||||
borderRadius: '10px',
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
backgroundColor: '#fff',
|
||||
}));
|
||||
|
||||
@@ -179,7 +179,7 @@ const RootContainer = styled('div')(({ theme }) => ({
|
||||
zIndex: 1,
|
||||
maxHeight: '525px',
|
||||
borderRadius: '10px',
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
backgroundColor: '#fff',
|
||||
padding: '8px 4px',
|
||||
}));
|
||||
|
||||
@@ -108,7 +108,7 @@ export const Search = (props: SearchProps) => {
|
||||
const SearchInput = styled('input')(({ theme }) => ({
|
||||
margin: '0.5em',
|
||||
backgroundColor: 'white',
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
padding: '16px 32px',
|
||||
borderRadius: '10px',
|
||||
}));
|
||||
@@ -116,7 +116,7 @@ const SearchInput = styled('input')(({ theme }) => ({
|
||||
const ResultContainer = styled(MuiBox)(({ theme }) => ({
|
||||
margin: '0.5em',
|
||||
backgroundColor: 'white',
|
||||
boxShadow: theme.affine.shadows.shadowSxDownLg,
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
padding: '16px 32px',
|
||||
borderRadius: '10px',
|
||||
transitionProperty: 'max-height',
|
||||
|
||||
Reference in New Issue
Block a user