adata-ui 0.1.80 → 0.1.81
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 +35 -35
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +35 -35
- 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/Header.vue +4 -2
- package/src/components/Header/ProfileMobile.vue +3 -3
package/package.json
CHANGED
|
@@ -788,9 +788,9 @@ export default {
|
|
|
788
788
|
.menu_mobile {
|
|
789
789
|
display: none;
|
|
790
790
|
grid-template-columns: 10% 90%;
|
|
791
|
+
z-index: 1000000;
|
|
791
792
|
.empty-space {
|
|
792
|
-
background:
|
|
793
|
-
opacity: 20%;
|
|
793
|
+
background: rgba(0, 0, 0, 0.40);
|
|
794
794
|
}
|
|
795
795
|
&::-webkit-scrollbar {
|
|
796
796
|
width: 4px;
|
|
@@ -909,6 +909,8 @@ export default {
|
|
|
909
909
|
padding: 20px 16px;
|
|
910
910
|
display: flex;
|
|
911
911
|
margin-top: auto;
|
|
912
|
+
position: relative;
|
|
913
|
+
z-index: 1000000;
|
|
912
914
|
button.sign {
|
|
913
915
|
span {
|
|
914
916
|
color: #fff;
|
|
@@ -104,8 +104,8 @@ export default {
|
|
|
104
104
|
default: 0
|
|
105
105
|
},
|
|
106
106
|
daysLeft: {
|
|
107
|
-
type:
|
|
108
|
-
|
|
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>
|