Skip to content

Commit

Permalink
chore(popup): Add minimum height for popup entry-form
Browse files Browse the repository at this point in the history
Ensures the popup size does not change

Increase max-height limit for edit-form popdowns
  • Loading branch information
tcrammond committed Apr 2, 2019
1 parent 38356a1 commit fca4a29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/html/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</form>
</div>

<div id="entry-form" class="view">
<div id="entry-form" class="view" style="min-height: calc(100vh - 40px);">
</div>

</div>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/autocomplete.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** Project Autocomplete **/
#project-autocomplete {
max-height: 105px;
max-height: 50vh;
overflow: auto;
position: absolute;
width: 214px;
Expand Down Expand Up @@ -252,7 +252,7 @@ span.item-name.has-tasks {
}

#tag-autocomplete .tag-list {
max-height: 75px;
max-height: 50vh;
overflow: auto;
padding: 0;
list-style: none;
Expand Down

0 comments on commit fca4a29

Please sign in to comment.