@jx3box/jx3box-common-ui 5.7.6 → 5.7.9
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/assets/css/header.less +2 -2
- package/package.json +1 -1
- package/src/Footer.vue +2 -0
- package/src/single/Creators.vue +1 -1
package/assets/css/header.less
CHANGED
|
@@ -251,7 +251,7 @@ body {
|
|
|
251
251
|
}
|
|
252
252
|
.mt(0px) !important;
|
|
253
253
|
}
|
|
254
|
-
@media screen and (max-width: @
|
|
254
|
+
@media screen and (max-width: @mininote) {
|
|
255
255
|
.c-header-nav {
|
|
256
256
|
display: none;
|
|
257
257
|
}
|
|
@@ -794,4 +794,4 @@ body {
|
|
|
794
794
|
top: @header-height;
|
|
795
795
|
left: 0;
|
|
796
796
|
position: absolute;
|
|
797
|
-
}
|
|
797
|
+
}
|
package/package.json
CHANGED
package/src/Footer.vue
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<footer class="c-footer" id="c-footer" v-if="!isApp">
|
|
3
|
+
<div class="c-footer-inner">
|
|
3
4
|
<div class="c-footer-left">
|
|
4
5
|
<img
|
|
5
6
|
class="u-flag"
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
<a class="u-feedback" :href="feedback" target="_blank">反馈建议</a>
|
|
28
29
|
</div>
|
|
29
30
|
<slot></slot>
|
|
31
|
+
</div>
|
|
30
32
|
</footer>
|
|
31
33
|
</template>
|
|
32
34
|
|
package/src/single/Creators.vue
CHANGED