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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -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;