Skip to content

Commit

Permalink
finally remove rendering glitches from inpage dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
blackforestboi committed May 30, 2024
1 parent 2753aa8 commit d4e1150
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion external/@worldbrain/memex-common
10 changes: 7 additions & 3 deletions src/dashboard-refactor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2389,11 +2389,15 @@ const ListSidebarContent = styled(Rnd)<{
`}
${(props) =>
props.peeking &&
css`
css<any>`
position: absolute
height: max-content;
background-color: ${(props) => props.theme.colors.greyScale1}98;
backdrop-filter: blur(30px);
background-color: ${(props) =>
props.inPageMode
? props.theme.colors.greyScale1
: props.theme.colors.greyScale1 + '98'};
backdrop-filter: ${(props) =>
props.inPageMode ? 'unset' : 'blur(30px)'};
//box-shadow: rgb(16 30 115 / 3%) 4px 0px 16px;
margin-top: 50px;
margin-bottom: 9px;
Expand Down

0 comments on commit d4e1150

Please sign in to comment.