Skip to content

Commit

Permalink
chore: Updates control panels font size in Explore (#20510)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored Jun 28, 2022
1 parent c4d2238 commit 480ee38
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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} />
Expand Down

0 comments on commit 480ee38

Please sign in to comment.