aefis-core-ui 2.3.0-rc24 → 2.3.0-rc25

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.
@@ -1304,13 +1304,6 @@ AvatarBox.propTypes = {
1304
1304
  };
1305
1305
 
1306
1306
  const useStyles$G = makeStyles$1(theme => ({
1307
- formattedContainer: {
1308
- display: "flex"
1309
- },
1310
- container: {
1311
- display: "flex",
1312
- boxSizing: "border-box"
1313
- },
1314
1307
  avatar: {
1315
1308
  flex: "0 0 auto",
1316
1309
  marginRight: theme.spacing(1)
@@ -1462,7 +1455,9 @@ const AvatarTitle = /*#__PURE__*/React.memo(function AvatarTitle({
1462
1455
  };
1463
1456
  const avatarIcon = type === "custom" ? avatar : icon[type];
1464
1457
  return /*#__PURE__*/jsxs(Box$1, {
1465
- className: formatContent ? classes.formattedContainer : classes.container,
1458
+ sx: {
1459
+ display: "flex"
1460
+ },
1466
1461
  children: [/*#__PURE__*/jsxs(Box$1, {
1467
1462
  sx: avatarContainerStyle,
1468
1463
  children: [size === "xsmall" && /*#__PURE__*/jsx(XSmallAvatar, {
@@ -1489,7 +1484,8 @@ const AvatarTitle = /*#__PURE__*/React.memo(function AvatarTitle({
1489
1484
  }), /*#__PURE__*/jsxs(Box$1, {
1490
1485
  sx: {
1491
1486
  display: "flex",
1492
- flexDirection: "column"
1487
+ flexDirection: "column",
1488
+ justifyContent: "center"
1493
1489
  },
1494
1490
  children: [typeof title === "string" ? /*#__PURE__*/jsx(Typography, {
1495
1491
  variant: "h6",