diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
| commit | 7f2356ba4bf45b1a240c557d942ef10effb092d4 (patch) | |
| tree | e95a09a398cb6e7d1b6bdd783c79df3eebe358cd /src/client/pages/timeline.vue | |
| parent | fix bug (diff) | |
| download | misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.gz misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.bz2 misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.zip | |
Tweak UI
Diffstat (limited to 'src/client/pages/timeline.vue')
| -rw-r--r-- | src/client/pages/timeline.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/pages/timeline.vue b/src/client/pages/timeline.vue index 6f527dce6a..751137c942 100644 --- a/src/client/pages/timeline.vue +++ b/src/client/pages/timeline.vue @@ -3,9 +3,9 @@ <div class="new" v-if="queue > 0" :style="{ width: width + 'px' }"><button class="_buttonPrimary" @click="top()">{{ $ts.newNoteRecived }}</button></div> <div class="_magnet"></div> - <XTutorial v-if="$store.reactiveState.tutorial.value != -1" class="tutorial _block _gap"/> - <XPostForm v-if="$store.reactiveState.showFixedPostForm.value" class="post-form _block _gap" fixed/> - <div class="tabs _block _gap"> + <XTutorial v-if="$store.reactiveState.tutorial.value != -1" class="tutorial _block"/> + <XPostForm v-if="$store.reactiveState.showFixedPostForm.value" class="post-form _block" fixed/> + <div class="tabs _block"> <div class="left"> <button class="_button tab" @click="() => { src = 'home'; saveSrc(); }" :class="{ active: src === 'home' }" v-tooltip="$ts._timelines.home"><Fa :icon="faHome"/></button> <button class="_button tab" @click="() => { src = 'local'; saveSrc(); }" :class="{ active: src === 'local' }" v-tooltip="$ts._timelines.local" v-if="isLocalTimelineAvailable"><Fa :icon="faComments"/></button> |