Skip to content

Commit

Permalink
Fix: Sidebar not showing fully on ipad #100
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Oct 28, 2024
1 parent 78b7228 commit 69492b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/data-browser/src/components/SideBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const SideBarStyled = styled.nav.attrs<SideBarStyledProps>(p => ({
p.exposed ? '0' : `calc(var(${SIDEBAR_WIDTH_PROP}) * -1 + 0.5rem)`};
/* When the user is hovering, show half opacity */
opacity: ${p => (p.exposed ? 1 : 0)};
height: 100vh;
height: 100dvh;
width: var(${SIDEBAR_WIDTH_PROP});
position: ${p => (p.locked ? 'relative' : 'absolute')};
border-right: ${p => `1px solid ${p.theme.colors.bg2}`};
Expand Down

0 comments on commit 69492b6

Please sign in to comment.