...
|
...
|
@@ -60,7 +60,7 @@ |
|
|
</div>
|
|
|
</cube-scroll>
|
|
|
|
|
|
<ReplaceToHome :scrolling="scrolling" :style="{bottom:'20px'}" ></ReplaceToHome>
|
|
|
<ReplaceToHome :scrolling="scrolling" class="back-to-home" ></ReplaceToHome>
|
|
|
|
|
|
<a v-if="isOwner" class="publish hover-opacity" :class="{'scroll-hide': scrolling}" :href="publishUrl || 'javascript:;'" @click="toDownloadPage">
|
|
|
<span class="publish-icon"></span>
|
...
|
...
|
@@ -79,7 +79,7 @@ import WaterFall from './scroll-reveal'; |
|
|
import YAS from 'utils/yas-constants';
|
|
|
|
|
|
import {createNamespacedHelpers, mapState} from 'vuex';
|
|
|
import ReplaceToHome from '../../../components/replace-to-home/replace-to-home';
|
|
|
import ReplaceToHome from 'components/replace-to-home/replace-to-home';
|
|
|
const {mapState: articleMapState, mapMutations: articleMapMutations} = createNamespacedHelpers('article');
|
|
|
const {mapActions: userMapActions} = createNamespacedHelpers('user');
|
|
|
|
...
|
...
|
@@ -499,6 +499,11 @@ export default { |
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.back-to-home {
|
|
|
bottom: 20px;
|
|
|
}
|
|
|
|
|
|
.author-page {
|
|
|
box-sizing: border-box;
|
|
|
color: #4a4a4a;
|
...
|
...
|
|