@eclass/ui-kit 1.54.13 → 1.54.15

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.
@@ -3659,13 +3659,14 @@ function Alert({
3659
3659
  display: "flex",
3660
3660
  alignItems: "center",
3661
3661
  children: [/* @__PURE__ */ jsxs(Box, {
3662
- as: "p",
3663
3662
  alignSelf: "center",
3663
+ as: "p",
3664
+ color: vars("colors-neutral-darkCharcoal"),
3664
3665
  fontFamily: "Roboto",
3665
3666
  fontSize: "16px",
3666
3667
  fontWeight: "400",
3667
3668
  lineHeight: "28px",
3668
- color: vars("colors-neutral-darkCharcoal"),
3669
+ mb: "0",
3669
3670
  children: [children, endTextLink && onClickLink && /* @__PURE__ */ jsx(BtnLink, {
3670
3671
  onClick: onClickLink,
3671
3672
  children: endTextLink
@@ -4373,11 +4374,13 @@ const ModalAlertNew = ({
4373
4374
  fontWeight: "700",
4374
4375
  fontSize: isDesktop ? "20px" : "18px",
4375
4376
  lineHeight: "24px",
4377
+ mb: 0,
4376
4378
  children: title
4377
4379
  }), description && /* @__PURE__ */ jsx(Box, {
4378
4380
  as: "p",
4379
4381
  fontSize: "16px",
4380
4382
  lineHeight: "24px",
4383
+ mb: 0,
4381
4384
  children: description
4382
4385
  })]
4383
4386
  }), type !== "loading" && children ? children : /* @__PURE__ */ jsx(Fragment, {})]