Last active
October 9, 2019 13:39
-
-
Save MobileSam/88c56918ee5c8bb9ee13fc60466ceef4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.react-grid-layout { | |
display: flex; | |
flex-direction: row; | |
flex-wrap: wrap; | |
height: auto !important; | |
justify-content: space-around | |
} | |
.react-grid-item.cssTransforms { | |
transform: none !important; | |
position: relative !important; | |
box-sizing: border-box; | |
width: calc(50% - 20px) !important; | |
height: auto !important | |
; | |
margin-top: 20px; | |
} | |
div[data-test-id="chart"], | |
div[data-highcharts-chart] { | |
height: 300px !important; | |
} | |
.highcharts-container { | |
width: 100% !important; | |
height: 300px !important; | |
} | |
.highcharts-container svg { | |
width: 100%; | |
min-height: 300px; | |
} | |
div[class*="ChartHeader_meta-"], | |
div[class*="ChartHeader_date-"], | |
div[class*="DashboardView_edit-menu-wrapper"] + div { | |
display: none; | |
} | |
div[class*="ChartBody_legend-container"] { | |
position: relative; | |
} | |
figure[class*="ChartGridItem_chart-container"] { | |
padding: 16px 22px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment