diff options
Diffstat (limited to 'src/client/views/nodes/MapBox/MapBox.scss')
-rw-r--r-- | src/client/views/nodes/MapBox/MapBox.scss | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/client/views/nodes/MapBox/MapBox.scss b/src/client/views/nodes/MapBox/MapBox.scss index 04e8b0dd5..e329af15c 100644 --- a/src/client/views/nodes/MapBox/MapBox.scss +++ b/src/client/views/nodes/MapBox/MapBox.scss @@ -1,10 +1,11 @@ -.MapBox { +.mapBox { width: 100%; height: 100%; overflow: hidden; display: flex; - .MapBox-contents { + + .mapBox-contents { width: 100%; height: 100%; overflow: hidden; @@ -13,7 +14,7 @@ position: unset !important; // when the sidebar filter flys out, this prevents the map from extending outside the document box } - .map-wrapper { + .mapBox-wrapper { width: 100%; .searchbox { box-sizing: border-box; @@ -31,5 +32,17 @@ margin-left: -120px; } } + + .mapBox-sidebar-handle { + position: absolute !important; + top: 0; + //top: calc(50% - 17.5px); // use this to center vertically -- make sure it looks okay for slide views + width: 10px; + height: 100%; + max-height: 35px; + background: lightgray; + border-radius: 20px; + cursor:grabbing; + } } } |