Skip to content

Commit

Permalink
fix: add meeting block is now 70px (#9848)
Browse files Browse the repository at this point in the history
  • Loading branch information
ackernaut authored Jun 17, 2024
1 parent 87e0d86 commit 8ab3b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/components/Dashboard/DashSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import SideBarStartMeetingButton from '../SideBarStartMeetingButton'
import LeftDashNavItem from './LeftDashNavItem'

const Nav = styled('nav')<{isOpen: boolean}>(({isOpen}) => ({
// 78px is total height of 'Add meeting' block
height: 'calc(100% - 78px)',
// 70px is total height of 'Add meeting' block
height: 'calc(100% - 70px)',
userSelect: 'none',
transition: `all 300ms`,
transform: isOpen ? undefined : `translateX(-${NavSidebar.WIDTH}px)`,
Expand Down

0 comments on commit 8ab3b72

Please sign in to comment.