Skip to content

Commit

Permalink
[ux] When WebUI is too narrow geography map disappears #43
Browse files Browse the repository at this point in the history
Sets the flex direction of the inner div wrapping the elements in the .form-row.field_geometry div to column when the screen size is less than 768px.

Fixes #43
  • Loading branch information
lehone-hp committed Mar 10, 2020
1 parent 749e54a commit 066954c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions django_loci/static/django-loci/css/loci.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,8 @@ input[type=text]{ width: 320px }
font-size: 14px;
}
#floorplan_set-group{ display: none }
@media (max-width: 767px){
.field-geometry > div{
flex-direction: column;
}
}

0 comments on commit 066954c

Please sign in to comment.