fixed relation map sizing issue

This commit is contained in:
azivner 2018-11-18 22:49:53 +01:00
parent 62a250a7fc
commit 05e9669eaf
2 changed files with 2 additions and 3 deletions

View file

@ -5,9 +5,7 @@
#relation-map-wrapper { #relation-map-wrapper {
position: relative; position: relative;
overflow: hidden !important; height: 100%;
height: 4000px; /* we need to set fixed dimentions. This number is probably enough to cover any screen */
width: 4000px;
outline: none; /* remove dotted outline on click */ outline: none; /* remove dotted outline on click */
} }

View file

@ -76,6 +76,7 @@ body {
position: relative; position: relative;
overflow: auto; overflow: auto;
flex-basis: content; flex-basis: content;
height: 100%;
} }
.note-detail-component { .note-detail-component {