@acorex/styles 16.19.46 → 16.19.47
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/package.json +1 -1
- package/scss/forms.scss +8 -3
- package/scss/master.scss +1 -1
package/package.json
CHANGED
package/scss/forms.scss
CHANGED
@@ -30,6 +30,7 @@
|
|
30
30
|
height: 100% !important;
|
31
31
|
border: none !important;
|
32
32
|
min-width: 40px;
|
33
|
+
min-height: 100%;
|
33
34
|
}
|
34
35
|
.arrow-number {
|
35
36
|
display: flex;
|
@@ -38,6 +39,9 @@
|
|
38
39
|
position: relative;
|
39
40
|
width: calc(var(--ax-base-size) * var(--ax-base-ratio));
|
40
41
|
height: 100%;
|
42
|
+
.button{
|
43
|
+
min-height: auto !important;
|
44
|
+
}
|
41
45
|
ax-button {
|
42
46
|
button {
|
43
47
|
height: 50% !important;
|
@@ -231,11 +235,11 @@
|
|
231
235
|
flex-wrap: wrap;
|
232
236
|
align-items: stretch;
|
233
237
|
width: 100%;
|
234
|
-
overflow: hidden;
|
238
|
+
// overflow: hidden;
|
235
239
|
border: 1px solid;
|
236
240
|
border-color: var(--ax-border-color);
|
237
241
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
238
|
-
|
242
|
+
|
239
243
|
box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
|
240
244
|
0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
241
245
|
&:focus-within {
|
@@ -332,6 +336,7 @@
|
|
332
336
|
}
|
333
337
|
.input {
|
334
338
|
width: 100%;
|
339
|
+
min-height: 100%;
|
335
340
|
input {
|
336
341
|
border: none !important;
|
337
342
|
border-radius: 0;
|
@@ -432,7 +437,7 @@
|
|
432
437
|
display: inline-flex;
|
433
438
|
overflow: hidden;
|
434
439
|
background: rgba(0, 0, 0, 0.04);
|
435
|
-
padding: 0
|
440
|
+
padding: 0 0.5rem;
|
436
441
|
margin: 0 0.2rem;
|
437
442
|
border-radius: var(--ax-size-border-radius);
|
438
443
|
color: var(--ax-gray-fore-color);
|