@arco-themes/react-aiux2026 1.0.4 → 1.0.6
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/README.md +13 -0
- package/css/arco.css +1 -1
- package/package.json +2 -2
- package/theme.less +14 -0
- package/variables.less +1 -0
package/package.json
CHANGED
package/theme.less
CHANGED
|
@@ -1701,6 +1701,14 @@
|
|
|
1701
1701
|
}
|
|
1702
1702
|
}
|
|
1703
1703
|
|
|
1704
|
+
.arco-form-item {
|
|
1705
|
+
margin-bottom: 24px;
|
|
1706
|
+
}
|
|
1707
|
+
.arco-form-message {
|
|
1708
|
+
min-height: 24px;
|
|
1709
|
+
line-height: 24px;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1704
1712
|
// Form Icon
|
|
1705
1713
|
.arco-form.arco-form-size-default {
|
|
1706
1714
|
.arco-form-item-feedback {
|
|
@@ -2380,6 +2388,12 @@
|
|
|
2380
2388
|
.arco-modal-footer {
|
|
2381
2389
|
border-top: none;
|
|
2382
2390
|
}
|
|
2391
|
+
&:has(.arco-modal-title .arco-icon),
|
|
2392
|
+
&:has(.arco-modal-title .as-icon) {
|
|
2393
|
+
.arco-modal-content {
|
|
2394
|
+
margin-left: 28px;
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2383
2397
|
}
|
|
2384
2398
|
.arco-message,
|
|
2385
2399
|
.arco-popconfirm-content,
|
package/variables.less
CHANGED