Skip to content

Commit

Permalink
fix: set overflow to hidden for vis and map items (#1050)
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenrikoverland authored Sep 8, 2020
1 parent 7039355 commit d3b8d93
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/ItemGrid/ItemGrid.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
overflow: auto;
}

.CHART .dashboard-item-content {
.CHART .dashboard-item-content,
.VISUALIZATION .dashboard-item-content,
.MAP .dashboard-item-content,
.EVENT_CHART .dashboard-item-content {
overflow: hidden;
}

Expand All @@ -66,8 +69,3 @@
.react-grid-item.APP .dashboard-item-content {
flex: 1;
}

.CHART.resizing .dashboard-item-content,
.EVENT_CHART.resizing .dashboard-item-content {
overflow: hidden;
}

0 comments on commit d3b8d93

Please sign in to comment.