chore: Updates control panels font size in Explore (#20510)

This commit is contained in:
Michael S. Molina
2022-06-28 09:16:59 -03:00
committed by GitHub
parent c4d2238a16
commit 480ee38917

View File

@@ -381,7 +381,14 @@ export const ControlPanelsContainer = (props: ControlPanelsContainerProps) => {
);
const PanelHeader = () => (
<span data-test="collapsible-control-panel-header">
<span>{label}</span>{' '}
<span
css={(theme: SupersetTheme) => css`
font-size: ${theme.typography.sizes.m}px;
line-height: 1.3;
`}
>
{label}
</span>{' '}
{description && (
// label is only used in tooltip id (should probably call this prop `id`)
<InfoTooltipWithTrigger label={sectionId} tooltip={description} />