diff --git a/packages/geoview-core/src/core/components/export/export-modal.tsx b/packages/geoview-core/src/core/components/export/export-modal.tsx index d89430d537b..b1b0198e6f1 100644 --- a/packages/geoview-core/src/core/components/export/export-modal.tsx +++ b/packages/geoview-core/src/core/components/export/export-modal.tsx @@ -168,7 +168,11 @@ export default function ExportModal(): JSX.Element { variant="standard" value={exportTitle} onChange={(e: ChangeEvent) => setExportTitle(e.target.value)} - sx={{ paddingBottom: '1rem', minWidth: 300 }} + sx={{ + paddingBottom: '1rem', + minWidth: 300, + '& label + div': { marginTop: '0.5rem' }, + }} /> diff --git a/packages/geoview-core/src/core/components/guide/guide-style.ts b/packages/geoview-core/src/core/components/guide/guide-style.ts index 863cb447ad0..f7faa9f741c 100644 --- a/packages/geoview-core/src/core/components/guide/guide-style.ts +++ b/packages/geoview-core/src/core/components/guide/guide-style.ts @@ -9,6 +9,9 @@ export const getSxClasses = (theme: Theme) => }, rightPanelContainer: { color: theme.palette.geoViewColor.textColor.main, + '& h1': { + fontSize: `${theme.palette.geoViewFontSize.xl} !important`, + }, }, footerGuideListItemText: { '&:hover': { diff --git a/packages/geoview-core/src/ui/style/themeOptionsGenerator.ts b/packages/geoview-core/src/ui/style/themeOptionsGenerator.ts index cc9be48fae7..d8845be5bb4 100644 --- a/packages/geoview-core/src/ui/style/themeOptionsGenerator.ts +++ b/packages/geoview-core/src/ui/style/themeOptionsGenerator.ts @@ -389,6 +389,30 @@ export const generateThemeOptions = (geoViewColors: IGeoViewColors = defaultGeoV }, }, }, + MuiSelect: { + styleOverrides: { + select: { + minHeight: '2.25rem', + padding: '0 !important', + }, + }, + }, + MuiNativeSelect: { + styleOverrides: { + select: { + minHeight: '2.25rem', + padding: '0 !important', + }, + }, + }, + MuiInputBase: { + styleOverrides: { + input: { + minHeight: '2.5rem', + padding: '0 !important', + }, + }, + }, }, overrides: { button: {