Changed top overflow for charts. (#11579)

This commit is contained in:
Kasia Kucharczyk
2020-11-05 20:35:41 +01:00
committed by GitHub
parent 094360392b
commit 091432ea8e
3 changed files with 2 additions and 1 deletions

View File

@@ -45,6 +45,7 @@ const propTypes = {
const Styles = styled.div`
height: 100%;
max-height: 100%;
overflow: auto;
.remove-alert {
cursor: pointer;
}

View File

@@ -59,7 +59,6 @@ const propTypes = {
const Styles = styled.div`
height: ${({ height }) => height};
min-height: ${({ height }) => height};
overflow: hidden;
text-align: left;
position: relative;
width: 100%;

View File

@@ -54,6 +54,7 @@ const getHotKeys = () =>
const Styles = styled.div`
display: flex;
flex-shrink: 0;
flex-direction: row;
align-items: center;
padding-bottom: ${({ theme }) => 2 * theme.gridUnit}px;