Fix styling

This commit is contained in:
Quynh Nguyen 2021-09-15 11:00:10 -05:00
parent 3ac2293283
commit ed496bf282
2 changed files with 3 additions and 1 deletions

View file

@ -94,6 +94,8 @@ $panelWidthXL: 900px;
border: 1px solid $euiBorderColor;
padding: 6px;
margin: 3px 12px 12px 0;
min-height: 120px;
height: min-content;
}
.dataVisualizerTextContent {

View file

@ -35,7 +35,7 @@ function getFormattedValue(value: number, totalCount: number): string {
return `${value} (${getPercentLabel(percentage)})`;
}
const BOOLEAN_DISTRIBUTION_CHART_HEIGHT = 100;
const BOOLEAN_DISTRIBUTION_CHART_HEIGHT = 70;
export const BooleanContent: FC<FieldDataRowProps> = ({ config }) => {
const fieldFormat = 'fieldFormat' in config ? config.fieldFormat : undefined;