sales-frontend-design-system 0.0.136 → 0.0.137

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.
@@ -291,6 +291,10 @@ $modal-zindex-value: zindex(modal);
291
291
  gap: margin(button-medium);
292
292
  align-items: center;
293
293
  padding: 0 margin(modal) margin(modal);
294
+
295
+ &.modal-footer-align-vertical {
296
+ flex-direction: column;
297
+ }
294
298
  }
295
299
 
296
300
  @keyframes slide-up {
package/dist/index.cjs.js CHANGED
@@ -834,8 +834,8 @@ const ModalContent = ({ children, className, ref, ...props }) => {
834
834
  };
835
835
 
836
836
  const cx$V = classNames$1.bind(styles$8);
837
- const ModalFooter = ({ children, className, ...props }) => {
838
- return /* @__PURE__ */ jsxRuntime.jsx("footer", { className: cx$V("modal-footer", className), ...props, children });
837
+ const ModalFooter = ({ children, align = "horizontal", className, ...props }) => {
838
+ return /* @__PURE__ */ jsxRuntime.jsx("footer", { className: cx$V("modal-footer", `modal-footer-align-${align}`, className), ...props, children });
839
839
  };
840
840
 
841
841
  const cx$U = classNames$1.bind(styles$8);