datastake-daf 0.6.595 → 0.6.596

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.
@@ -40697,7 +40697,7 @@ function AuthForm(_ref) {
40697
40697
  }), /*#__PURE__*/jsxRuntime.jsx("div", {
40698
40698
  className: "buttons",
40699
40699
  style: {
40700
- marginTop: '8px'
40700
+ marginTop: 0
40701
40701
  },
40702
40702
  children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
40703
40703
  onClick: prev,
@@ -40709,7 +40709,7 @@ function AuthForm(_ref) {
40709
40709
  }) : /*#__PURE__*/jsxRuntime.jsx("div", {
40710
40710
  className: "buttons",
40711
40711
  style: {
40712
- marginTop: 0
40712
+ marginTop: isMultiStep ? '16px' : 0
40713
40713
  },
40714
40714
  children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
40715
40715
  type: "primary",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.595",
3
+ "version": "0.6.596",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -210,14 +210,14 @@ function AuthForm ({
210
210
  );
211
211
  }}
212
212
  </Form.Item>
213
- <div className="buttons" style={{ marginTop: '8px'}}>
213
+ <div className="buttons" style={{ marginTop: 0}}>
214
214
  <BorderedButton onClick={prev} block className="normal-br">
215
215
  {t("Back")}
216
216
  </BorderedButton>
217
217
  </div>
218
218
  </div>
219
219
  ) : (
220
- <div className="buttons" style={{ marginTop: 0}}>
220
+ <div className="buttons" style={{ marginTop: isMultiStep ? '16px' : 0}}>
221
221
  <BorderedButton type="primary" htmlType="submit" block className="normal-br">
222
222
  {isMultiStep ? t("Next") : submitText}
223
223
  </BorderedButton>