Skip to content

Commit

Permalink
chore: release v1.8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
asadahimeka committed May 28, 2023
1 parent 6f4b7b0 commit b882ae8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pixiv-viewer",
"version": "1.8.16",
"version": "1.8.17",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
14 changes: 9 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,15 @@ html,body
.nav-container
left unset
right 0
bottom 42px
bottom 50%
width 1.2rem
height auto
transform: translateX(100%);
// transform: translateX(100%);
transform: translate(0, 50%);
opacity 1
&.showNav
transform: translateX(0);
// transform: translateX(0);
transform: translate(0, 50%);
.nav-bar
flex-direction: column
justify-content: center
Expand All @@ -99,7 +102,8 @@ html,body
&.nav_to_top
display list-item
.icon
font-size 0.72rem
margin-bottom 4px
font-size 0.55rem
span
display none
font-size 0.26rem
</style>
2 changes: 1 addition & 1 deletion src/components/Nav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default {
/* border-radius: .7rem .7rem 0 0; */
box-shadow: 0px 0px 20px #dedede;
width: 100%;
max-width: 750px;
// max-width: 750px;
height: 100%;
margin: 0 auto;
border-top-left-radius: 16px;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Setting/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="setting-page">
<top-bar id="top-bar-wrap" />
<h3 class="af_title">{{ $t('about.title') }}</h3>
<van-cell center :title="$t('about.version')" clickable label="v1.8.16" />
<van-cell center :title="$t('about.version')" clickable label="v1.8.17" />
<van-cell center :title="$t('about.disclaimer')" is-link :label="$t('tips.click_view')" to="/setting/about/disclaimer" />
<van-cell
center
Expand Down
2 changes: 1 addition & 1 deletion src/views/Setting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<van-cell size="large" center :title="$t('display.title')" icon="eye-o" is-link to="/setting/contents_display" />
<van-cell size="large" center :title="$t('cache.title')" icon="delete-o" is-link to="/setting/clearcache" />
<van-cell size="large" center :title="$t('setting.other.title')" icon="setting-o" is-link to="/setting/others" />
<!-- <van-cell size="large" center :title="$t('setting.down_app')" icon="apps-o" is-link to="/setting/down_app" /> -->
<van-cell size="large" center :title="$t('setting.down_app')" icon="apps-o" is-link to="/setting/down_app" />
<van-cell size="large" center :title="$t('setting.recomm.title')" icon="bookmark-o" is-link to="/setting/recommend" />
<van-cell size="large" center :title="$t('setting.about')" icon="info-o" is-link to="/setting/about" />
<div v-if="isLoggedIn" style="width: 60%;margin: 1rem auto 0;">
Expand Down

0 comments on commit b882ae8

Please sign in to comment.