adata-ui 0.1.80 → 0.1.83

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.80",
3
+ "version": "0.1.83",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -403,7 +403,7 @@
403
403
  </div>
404
404
  </div>
405
405
  </div>
406
- <div class="menu_mobile-footer">
406
+ <div v-show="isAuthenticated" class="menu_mobile-footer">
407
407
  <button class="sign" @click="$emit('logout')">
408
408
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
409
409
  <path d="M16.5 15L19.5 12L16.5 9" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
@@ -696,6 +696,7 @@ export default {
696
696
  align-items: center;
697
697
  @media (max-width: 1025px) {
698
698
  height: 56px;
699
+ border-bottom: 1px solid #BDC7CE;
699
700
  }
700
701
 
701
702
  &.bordered {
@@ -788,9 +789,10 @@ export default {
788
789
  .menu_mobile {
789
790
  display: none;
790
791
  grid-template-columns: 10% 90%;
792
+ z-index: 1000000;
793
+ position: absolute!important;
791
794
  .empty-space {
792
- background: black;
793
- opacity: 20%;
795
+ background: rgba(0, 0, 0, 0.40);
794
796
  }
795
797
  &::-webkit-scrollbar {
796
798
  width: 4px;
@@ -909,6 +911,8 @@ export default {
909
911
  padding: 20px 16px;
910
912
  display: flex;
911
913
  margin-top: auto;
914
+ position: relative;
915
+ z-index: 1000000;
912
916
  button.sign {
913
917
  span {
914
918
  color: #fff;
@@ -104,8 +104,8 @@ export default {
104
104
  default: 0
105
105
  },
106
106
  daysLeft: {
107
- type: String,
108
- defailt: ""
107
+ type: Number,
108
+ default: ""
109
109
  },
110
110
  mode: {
111
111
  type: String,
@@ -297,4 +297,4 @@ export default {
297
297
  }
298
298
  }
299
299
  }
300
- </style>
300
+ </style>