sinking-antd 1.0.5 → 1.0.7
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 +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -491,9 +491,11 @@ var useStyles3 = antdStyle.createStyles(({ css }) => {
|
|
|
491
491
|
padding: 10px;
|
|
492
492
|
`,
|
|
493
493
|
load: {
|
|
494
|
-
margin: "0 auto",
|
|
495
494
|
width: "100%",
|
|
496
|
-
|
|
495
|
+
display: "flex",
|
|
496
|
+
justifyContent: "center",
|
|
497
|
+
alignItems: "center",
|
|
498
|
+
height: "80vh"
|
|
497
499
|
},
|
|
498
500
|
gutter: {
|
|
499
501
|
display: "flex"
|
|
@@ -775,8 +777,10 @@ var useLoadingStyles = antdStyle.createStyles(() => {
|
|
|
775
777
|
return {
|
|
776
778
|
body: {
|
|
777
779
|
width: "100%",
|
|
778
|
-
|
|
779
|
-
|
|
780
|
+
display: "flex",
|
|
781
|
+
justifyContent: "center",
|
|
782
|
+
alignItems: "center",
|
|
783
|
+
height: "80vh"
|
|
780
784
|
}
|
|
781
785
|
};
|
|
782
786
|
});
|