adata-ui 0.1.34 → 0.1.37
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/adata-ui.common.js +3 -3
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +3 -3
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +1 -1
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/_text_field.scss +0 -4
- package/src/components/Button/AButton.vue +2 -1
package/package.json
CHANGED
|
@@ -76,7 +76,6 @@
|
|
|
76
76
|
@media(max-width: 1025px) {
|
|
77
77
|
padding: 19px 36px 7px 12px;
|
|
78
78
|
height: 40px;
|
|
79
|
-
border: 1px solid #71757A;
|
|
80
79
|
font-size: 12px;
|
|
81
80
|
}
|
|
82
81
|
|
|
@@ -183,7 +182,6 @@
|
|
|
183
182
|
background: #fff;
|
|
184
183
|
z-index: 1000;
|
|
185
184
|
border-radius: 2px;
|
|
186
|
-
border: 1px solid #71757A;
|
|
187
185
|
padding: 8px 0;
|
|
188
186
|
@media(max-width: 1025px) {
|
|
189
187
|
overflow: auto;
|
|
@@ -219,7 +217,6 @@
|
|
|
219
217
|
height: 40px;
|
|
220
218
|
width: 40px;
|
|
221
219
|
min-width: 40px;
|
|
222
|
-
border: 1px solid #71757A;
|
|
223
220
|
border-radius: 0 2px 2px 0;
|
|
224
221
|
border-left: none;
|
|
225
222
|
background: #FFCD33;
|
|
@@ -227,7 +224,6 @@
|
|
|
227
224
|
|
|
228
225
|
&__input-mob-filter {
|
|
229
226
|
background: #ffffff;
|
|
230
|
-
border: 1px solid #71757A;
|
|
231
227
|
border-bottom: none;
|
|
232
228
|
box-sizing: border-box;
|
|
233
229
|
border-radius: 2px;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
]"
|
|
8
8
|
v-bind="$attrs"
|
|
9
9
|
v-on="$listeners"
|
|
10
|
-
:is="url ? '
|
|
10
|
+
:is="url ? 'a' : 'button'"
|
|
11
11
|
:href="url"
|
|
12
12
|
:event="event ? 'click' : ''"
|
|
13
13
|
>
|
|
@@ -75,6 +75,7 @@ export default {
|
|
|
75
75
|
|
|
76
76
|
@media screen and (max-width: 560px) {
|
|
77
77
|
width: 100%;
|
|
78
|
+
text-align: center;
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
svg {
|