TimePickerFooter: Fix background (#106209)

This commit is contained in:
kay delaney
2025-06-05 10:44:42 +01:00
committed by GitHub
parent e8d6b94120
commit e47e04a1ca
@@ -110,7 +110,7 @@ export const TimePickerFooter = (props: Props) => {
aria-controls={fiscalYearSettingsId}
/>
</TabsBar>
<TabContent>
<TabContent className={style.noBackground}>
{editMode === 'tz' ? (
<section
role="tabpanel"
@@ -183,6 +183,9 @@ const getStyle = (theme: GrafanaTheme2) => ({
timeSettingContainer: css({
paddingTop: theme.spacing(1),
}),
noBackground: css({
background: 'inherit',
}),
fiscalYearField: css({
marginBottom: 0,
}),