diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-10 14:37:29 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-10 14:37:29 +0900 |
| commit | 56a28923ca30a6a7f391598e06fc1bc9879bc973 (patch) | |
| tree | b515fd6d7d3978a2520d744b297d0e5243b7b854 /src | |
| parent | Improve UI (diff) | |
| download | misskey-56a28923ca30a6a7f391598e06fc1bc9879bc973.tar.gz misskey-56a28923ca30a6a7f391598e06fc1bc9879bc973.tar.bz2 misskey-56a28923ca30a6a7f391598e06fc1bc9879bc973.zip | |
Tweak UI
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/store.ts | 2 | ||||
| -rw-r--r-- | src/client/ui/_common_/header.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/store.ts b/src/client/store.ts index e6fdd12f1d..bccb6cc206 100644 --- a/src/client/store.ts +++ b/src/client/store.ts @@ -150,7 +150,7 @@ export const defaultStore = markRaw(new Storage('base', { }, showGapBetweenNotesInTimeline: { where: 'device', - default: true + default: false }, darkMode: { where: 'device', diff --git a/src/client/ui/_common_/header.vue b/src/client/ui/_common_/header.vue index f95447096f..64ad0393c2 100644 --- a/src/client/ui/_common_/header.vue +++ b/src/client/ui/_common_/header.vue @@ -1,7 +1,7 @@ <template> <div class="fdidabkb" :class="{ center }" :style="`--height:${height};`"> <transition :name="$store.state.animation ? 'header' : ''" mode="out-in" appear> - <button class="_button back" v-if="withBack && canBack" @click.stop="back()"><Fa :icon="faChevronLeft"/></button> + <button class="_button back" v-if="withBack && canBack" @click.stop="back()" v-tooltip="$ts.goBack"><Fa :icon="faChevronLeft"/></button> </transition> <template v-if="info"> <div class="titleContainer"> |