diff --git a/packages/client/components/StartMeetingFAB.tsx b/packages/client/components/StartMeetingFAB.tsx index fe9c00d3a71..f1352a86074 100644 --- a/packages/client/components/StartMeetingFAB.tsx +++ b/packages/client/components/StartMeetingFAB.tsx @@ -36,7 +36,6 @@ const MeetingLabel = styled('div')<{isExpanded: boolean}>(({isExpanded}) => ({ fontSize: 16, fontWeight: 600, textAlign: 'start', - paddingTop: 4, transition: `all 300ms ${BezierCurve.DECELERATE}`, transform: `translateX(${isExpanded ? -4 : ElementWidth.NEW_MEETING_FAB}px)`, width: isExpanded ? ElementWidth.NEW_MEETING_FAB : 0 diff --git a/packages/client/components/TopBarStartMeetingButton.tsx b/packages/client/components/TopBarStartMeetingButton.tsx index 90054abac37..78184e9d056 100644 --- a/packages/client/components/TopBarStartMeetingButton.tsx +++ b/packages/client/components/TopBarStartMeetingButton.tsx @@ -17,8 +17,7 @@ const Button = styled(FloatingActionButton)({ const MeetingLabel = styled('div')({ fontSize: 16, - fontWeight: 600, - paddingTop: 4 + fontWeight: 600 }) const TopBarStartMeetingButton = () => {