adata-ui 0.1.9 → 0.1.10
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 +10 -6
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +10 -6
- 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/components/Header/Header.vue +10 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<header class="a-header">
|
|
2
|
+
<header class="a-header" :class="{'bordered': isBordered}">
|
|
3
3
|
<div class="container">
|
|
4
4
|
<div class="a-header__left">
|
|
5
5
|
<a class="logo" :href="toAdtdev('https://adata.kz')">
|
|
@@ -93,6 +93,10 @@ export default {
|
|
|
93
93
|
type: Boolean,
|
|
94
94
|
default: false
|
|
95
95
|
},
|
|
96
|
+
isBordered: {
|
|
97
|
+
type: Boolean,
|
|
98
|
+
default: false
|
|
99
|
+
},
|
|
96
100
|
requestCount: {
|
|
97
101
|
type: Number,
|
|
98
102
|
default: null
|
|
@@ -183,7 +187,12 @@ export default {
|
|
|
183
187
|
height: 40px;
|
|
184
188
|
}
|
|
185
189
|
|
|
190
|
+
&.bordered {
|
|
191
|
+
border-bottom: 1px solid #2C3E5026;
|
|
192
|
+
}
|
|
193
|
+
|
|
186
194
|
& > .container {
|
|
195
|
+
width: 100%;
|
|
187
196
|
display: flex;
|
|
188
197
|
justify-content: space-between;
|
|
189
198
|
align-items: center;
|