adata-ui 0.1.55 → 0.1.56
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 +27 -28
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +27 -28
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Header/InfoHeader.vue +4 -5
package/package.json
CHANGED
|
@@ -132,12 +132,11 @@
|
|
|
132
132
|
<div v-if="isAuthenticated" class="info-header__item">
|
|
133
133
|
<div class="info-header__item-elem">
|
|
134
134
|
<div class="info-header__inner-item">
|
|
135
|
-
<span class="info-header__title">Cуточный лимит
|
|
135
|
+
<span class="info-header__title">Cуточный лимит запросов</span>
|
|
136
136
|
<span class="info-header__result info-header__result_circled">{{ requestCount }}</span>
|
|
137
137
|
</div>
|
|
138
|
-
<div class="divider"></div>
|
|
139
138
|
<div class="info-header__inner-item">
|
|
140
|
-
<span class="info-header__title">остаток
|
|
139
|
+
<span class="info-header__title">остаток дней</span>
|
|
141
140
|
<span class="info-header__result info-header__result_circled">{{ daysRemaining }}</span>
|
|
142
141
|
</div>
|
|
143
142
|
</div>
|
|
@@ -238,15 +237,15 @@ export default {
|
|
|
238
237
|
font-size: 12px;
|
|
239
238
|
line-height: 14px;
|
|
240
239
|
color: #2C3E50;
|
|
240
|
+
margin-right: 8px;
|
|
241
241
|
}
|
|
242
242
|
&__result {
|
|
243
243
|
font-weight: 400;
|
|
244
244
|
font-size: 12px;
|
|
245
|
-
line-height: 14px;
|
|
246
245
|
color: #2C3E50;
|
|
247
246
|
&_circled {
|
|
248
247
|
color: #ffffff;
|
|
249
|
-
padding:
|
|
248
|
+
padding: 2px 8px;
|
|
250
249
|
background: #007AFF;
|
|
251
250
|
border-radius: 100px;
|
|
252
251
|
}
|