seeder-st2110-components 1.6.1 → 1.6.3
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.css +1 -1
- package/dist/index.esm.js +741 -74
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +740 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/index.less +10 -0
package/package.json
CHANGED
package/src/styles/index.less
CHANGED
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.preset-management {
|
|
75
|
+
.min-w-0 {
|
|
76
|
+
min-width: 0px;
|
|
77
|
+
}
|
|
75
78
|
.w-full {
|
|
76
79
|
width: 100%;
|
|
77
80
|
}
|
|
@@ -108,6 +111,9 @@
|
|
|
108
111
|
.grid-cols-3 {
|
|
109
112
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
110
113
|
}
|
|
114
|
+
.gap-2 {
|
|
115
|
+
gap: 0.5rem; /* 8px */
|
|
116
|
+
}
|
|
111
117
|
.ant-modal .ant-modal-content {
|
|
112
118
|
padding: 0;
|
|
113
119
|
}
|
|
@@ -273,6 +279,10 @@
|
|
|
273
279
|
display: none;
|
|
274
280
|
}
|
|
275
281
|
|
|
282
|
+
.ant-spin-fullscreen {
|
|
283
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
284
|
+
}
|
|
285
|
+
|
|
276
286
|
.draggable-number-input {
|
|
277
287
|
box-sizing: border-box;
|
|
278
288
|
margin: 0;
|