@eclass/ui-kit 1.39.8 → 1.39.9

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.
@@ -31718,16 +31718,18 @@ function ModalAlert({
31718
31718
  typeAlert,
31719
31719
  title,
31720
31720
  description,
31721
- optionsButton
31721
+ optionsButton,
31722
+ top: top2
31722
31723
  }) {
31723
31724
  const [isDesktop] = useMediaQuery("(min-width: 650px)");
31724
31725
  const modalStyles = {
31725
31726
  content: {
31726
- top: "3.75rem"
31727
+ top: top2
31727
31728
  }
31728
31729
  };
31729
31730
  const showBorder = optionsButton.length > 1;
31730
31731
  return /* @__PURE__ */ jsxs(Modal, {
31732
+ id: "modal-alert",
31731
31733
  isOpen: showModal,
31732
31734
  onClose: () => {
31733
31735
  },