Skip to content

Commit

Permalink
[FIX]: Board list bottom cut off (#554)
Browse files Browse the repository at this point in the history
fix: scrollable content height fixed
  • Loading branch information
CatiaAntunes96 authored Nov 7, 2022
1 parent 88bc639 commit 67c20b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Boards/MyBoards/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Flex from 'components/Primitives/Flex';

const ScrollableContent = styled(Flex, {
mt: '$24',
height: 'calc(100vh - 300px)',
height: 'calc(100vh - 180px)',
overflowY: 'auto',
pr: '$10',
pb: '$10'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ListOfCards = React.memo<ListOfCardsProp>(({ data, userId, fetchBoards, is

return (
<Flex
css={{ mt: '$24', height: 'calc(100vh - 450px)', overflow: 'auto', pr: '$10' }}
css={{ mt: '$24', height: 'calc(100vh - 410px)', overflow: 'auto', pr: '$10' }}
direction="column"
gap="24"
justify="start"
Expand Down

0 comments on commit 67c20b5

Please sign in to comment.