aefis-core-ui 2.3.0-rc60 → 2.3.0-rc61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1944,7 +1944,8 @@ const useStyles$F = makeStyles(theme => ({
1944
1944
  paddingTop: theme.spacing(2),
1945
1945
  paddingBottom: theme.spacing(2),
1946
1946
  display: "flex",
1947
- width: "100%"
1947
+ width: "100%",
1948
+ alignItems: "center"
1948
1949
  },
1949
1950
  sectionHeaderTop: {
1950
1951
  paddingBottom: theme.spacing(2)
@@ -2142,6 +2143,7 @@ const ContentBox = props => {
2142
2143
  },
2143
2144
  children: props.header
2144
2145
  }), props.headerAction && /*#__PURE__*/jsx(Button, {
2146
+ sx: {},
2145
2147
  name: props.headerAction.name,
2146
2148
  variant: "contained",
2147
2149
  color: "primary",
@@ -2149,7 +2151,8 @@ const ContentBox = props => {
2149
2151
  sx: {
2150
2152
  display: "flex",
2151
2153
  alignItems: "center",
2152
- marginLeft: "auto"
2154
+ marginLeft: "auto",
2155
+ maxHeight: "32px"
2153
2156
  },
2154
2157
  onClick: props.headerAction.action || props.headerAction.onClick,
2155
2158
  style: props.headerAction.style || undefined,