@odx/websites-react 1.1.103 → 1.1.104
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.
|
@@ -14,7 +14,7 @@ const ModalBody = ({ children, ...props }) => {
|
|
|
14
14
|
return (_jsx("div", { ...props, className: cn('overflow-y-auto relative bg-draeger-white', props.className), children: children }));
|
|
15
15
|
};
|
|
16
16
|
const modalFooterClasses = `
|
|
17
|
-
pt-6 flex justify-end items-center grow-0 gap-3 flex-col
|
|
17
|
+
pt-6 flex justify-end items-center grow-0 gap-3 flex-col flex-wrap md:flex-row
|
|
18
18
|
`;
|
|
19
19
|
const ModalFooter = ({ className, children, ...props }) => children && (_jsx("div", { className: cn(modalFooterClasses, className), ...props, children: children }));
|
|
20
20
|
const modalClasses = `
|
package/package.json
CHANGED