seeder-st2110-components 1.5.6 → 1.5.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.css +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/index.less +30 -9
package/package.json
CHANGED
package/src/styles/index.less
CHANGED
|
@@ -93,13 +93,6 @@
|
|
|
93
93
|
.p-8 {
|
|
94
94
|
padding: 32px;
|
|
95
95
|
}
|
|
96
|
-
.block {
|
|
97
|
-
display: block;
|
|
98
|
-
}
|
|
99
|
-
.mx-auto {
|
|
100
|
-
margin-left: auto;
|
|
101
|
-
margin-right: auto;
|
|
102
|
-
}
|
|
103
96
|
.text-gray-400 {
|
|
104
97
|
color: rgb(156, 163, 175);
|
|
105
98
|
}
|
|
@@ -125,7 +118,6 @@
|
|
|
125
118
|
.ant-spin-nested-loading {
|
|
126
119
|
margin-block-start: 0;
|
|
127
120
|
}
|
|
128
|
-
|
|
129
121
|
.left-list-wrapper {
|
|
130
122
|
display: flex;
|
|
131
123
|
flex-direction: column;
|
|
@@ -173,7 +165,6 @@
|
|
|
173
165
|
}
|
|
174
166
|
}
|
|
175
167
|
}
|
|
176
|
-
|
|
177
168
|
.submit-btn-wrapper {
|
|
178
169
|
padding: 16px 24px;
|
|
179
170
|
margin-block-start: 0;
|
|
@@ -185,6 +176,24 @@
|
|
|
185
176
|
}
|
|
186
177
|
}
|
|
187
178
|
|
|
179
|
+
.flex {
|
|
180
|
+
display: flex;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.block {
|
|
184
|
+
display: block;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.mx-auto {
|
|
188
|
+
margin-left: auto;
|
|
189
|
+
margin-right: auto;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.text-xl {
|
|
193
|
+
font-size: 1.25rem; /* 20px */
|
|
194
|
+
line-height: 1.75rem; /* 28px */
|
|
195
|
+
}
|
|
196
|
+
|
|
188
197
|
.text-2xl {
|
|
189
198
|
font-size: 1.5rem; /* 24px */
|
|
190
199
|
line-height: 2rem; /* 32px */
|
|
@@ -199,6 +208,18 @@
|
|
|
199
208
|
color: rgb(163 163 163);
|
|
200
209
|
}
|
|
201
210
|
|
|
211
|
+
.inline-block {
|
|
212
|
+
display: inline-block;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.w-10 {
|
|
216
|
+
width: 2.5rem; /* 40px */
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.text-center {
|
|
220
|
+
text-align: center;
|
|
221
|
+
}
|
|
222
|
+
|
|
202
223
|
.hidden {
|
|
203
224
|
display: none;
|
|
204
225
|
}
|