sprint-asia-custom-component 0.1.149 → 0.1.150
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.
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/components/footer/index.js +2 -2
package/dist/index.js
CHANGED
|
@@ -48191,9 +48191,9 @@
|
|
|
48191
48191
|
additionalButton
|
|
48192
48192
|
}) => {
|
|
48193
48193
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48194
|
-
className: "fixed bottom-0 flex justify-end w-full items-center py-1 px-6 bg-white"
|
|
48194
|
+
className: "fixed left-0 bottom-0 flex justify-end w-full flex-1 items-center py-1 px-6 bg-white"
|
|
48195
48195
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48196
|
-
className: "flex items-center
|
|
48196
|
+
className: "flex items-center"
|
|
48197
48197
|
}, isActiveLeftButton && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48198
48198
|
className: "m-1"
|
|
48199
48199
|
}, modeLeftButton === "primary" && /*#__PURE__*/React__default["default"].createElement(PrimaryButton, {
|
package/package.json
CHANGED
|
@@ -16,8 +16,8 @@ const Footer = ({
|
|
|
16
16
|
additionalButton,
|
|
17
17
|
}) => {
|
|
18
18
|
return (
|
|
19
|
-
<div className="fixed bottom-0 flex justify-end w-full items-center py-1 px-6 bg-white">
|
|
20
|
-
<div className="flex items-center
|
|
19
|
+
<div className="fixed left-0 bottom-0 flex justify-end w-full flex-1 items-center py-1 px-6 bg-white">
|
|
20
|
+
<div className="flex items-center">
|
|
21
21
|
{isActiveLeftButton && (
|
|
22
22
|
<div className="m-1">
|
|
23
23
|
{modeLeftButton === "primary" && (
|