Skip to content

Commit

Permalink
Made node creation modal bigger on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
andev0 committed Aug 16, 2024
1 parent 375fbc9 commit 70803f1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,26 @@ div#node-creation-modal {
flex-direction: column;
}

@media screen and (max-width: 560px) {
div#node-creation-modal {
min-width: 100%;
min-height: 100%;
max-width: 100%;
max-height: 100%;
border-radius: 0;
}
}

@media screen and (max-height: 560px) {
div#node-creation-modal {
min-width: 100%;
min-height: 100%;
max-width: 100%;
max-height: 100%;
border-radius: 0;
}
}

#node-creation-modal .title-row {
height: 64px;
display: flex;
Expand Down

0 comments on commit 70803f1

Please sign in to comment.