mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-18 10:31:50 +08:00
Merge pull request #91 from toeverything/fix/lighter-box-shadow
fix: lighter box shadow
This commit is contained in:
@@ -193,7 +193,7 @@ const LigoLeftContainer = styled('div')({
|
||||
position: 'relative',
|
||||
});
|
||||
|
||||
const WorkspaceSidebar = styled('div')(({ hidden }) => ({
|
||||
const WorkspaceSidebar = styled('div')(({ theme }) => ({
|
||||
position: 'absolute',
|
||||
bottom: '48px',
|
||||
top: '12px',
|
||||
@@ -203,7 +203,7 @@ const WorkspaceSidebar = styled('div')(({ hidden }) => ({
|
||||
width: 300,
|
||||
minWidth: 300,
|
||||
borderRadius: '0px 10px 10px 0px',
|
||||
boxShadow: '0px 1px 10px rgba(152, 172, 189, 0.6)',
|
||||
boxShadow: theme.affine.shadows.shadow1,
|
||||
backgroundColor: '#FFFFFF',
|
||||
transitionProperty: 'left',
|
||||
transitionDuration: '0.35s',
|
||||
|
||||
Reference in New Issue
Block a user