Skip to content

Commit

Permalink
Merge pull request #2106 from Shoaibdev7/blueprint-modal-responsive
Browse files Browse the repository at this point in the history
 Fixed(BluePrint): Resolve Scrolling Issues for New Node Type Creation
  • Loading branch information
Rassl authored Sep 12, 2024
2 parents 02f162e + 93fc871 commit 8397305
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/ModalsContainer/BlueprintModal/Body/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,18 @@ const InnerEditorWrapper = styled.div`
overflow-y: auto;
padding: 16px;
max-height: calc(90vh - 20px);
@media (max-width: 1440px) {
max-height: calc(85vh - 20px);
}
@media (max-width: 1024px) {
max-height: calc(65vh - 20px);
}
@media (max-width: 924px) {
max-height: calc(65vh - 20px);
}
`

const Container = styled(Flex)`
Expand Down

0 comments on commit 8397305

Please sign in to comment.