@tidbcloud/uikit 2.0.0-beta.25 → 2.0.0-beta.26
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/CHANGELOG.md +6 -0
- package/dist/theme/theme.cjs +3 -1
- package/dist/theme/theme.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/theme/theme.cjs
CHANGED
|
@@ -656,7 +656,9 @@ const theme = {
|
|
|
656
656
|
},
|
|
657
657
|
body: {
|
|
658
658
|
padding: 24,
|
|
659
|
-
backgroundColor: theme2.colors.carbon[0]
|
|
659
|
+
backgroundColor: theme2.colors.carbon[0],
|
|
660
|
+
borderBottomLeftRadius: theme2.defaultRadius,
|
|
661
|
+
borderBottomRightRadius: theme2.defaultRadius
|
|
660
662
|
}
|
|
661
663
|
})
|
|
662
664
|
},
|
package/dist/theme/theme.js
CHANGED
|
@@ -654,7 +654,9 @@ const theme = {
|
|
|
654
654
|
},
|
|
655
655
|
body: {
|
|
656
656
|
padding: 24,
|
|
657
|
-
backgroundColor: theme2.colors.carbon[0]
|
|
657
|
+
backgroundColor: theme2.colors.carbon[0],
|
|
658
|
+
borderBottomLeftRadius: theme2.defaultRadius,
|
|
659
|
+
borderBottomRightRadius: theme2.defaultRadius
|
|
658
660
|
}
|
|
659
661
|
})
|
|
660
662
|
},
|