summaryrefslogtreecommitdiff
path: root/src/client/ui
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-16 19:20:49 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-16 19:20:49 +0900
commitd672fccef49835c7616638da19506426c7a979ed (patch)
treef69fd9b28e3478eed030693dda7b476fe99fc93a /src/client/ui
parentchore: fix spacer component (diff)
downloadsharkey-d672fccef49835c7616638da19506426c7a979ed.tar.gz
sharkey-d672fccef49835c7616638da19506426c7a979ed.tar.bz2
sharkey-d672fccef49835c7616638da19506426c7a979ed.zip
refactor
Diffstat (limited to 'src/client/ui')
-rw-r--r--src/client/ui/chat/side.vue2
-rw-r--r--src/client/ui/deck/main-column.vue2
-rw-r--r--src/client/ui/default.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/ui/chat/side.vue b/src/client/ui/chat/side.vue
index d920e5b77c..3fd0a0e77b 100644
--- a/src/client/ui/chat/side.vue
+++ b/src/client/ui/chat/side.vue
@@ -3,7 +3,7 @@
<header class="header" @contextmenu.prevent.stop="onContextmenu">
<MkHeader class="title" :info="pageInfo" :center="false"/>
</header>
- <component :is="component" v-bind="props" :ref="changePage" class="body _flat_"/>
+ <component :is="component" v-bind="props" :ref="changePage" class="body _fitSide_"/>
</div>
</template>
diff --git a/src/client/ui/deck/main-column.vue b/src/client/ui/deck/main-column.vue
index 2127444769..baf88a9721 100644
--- a/src/client/ui/deck/main-column.vue
+++ b/src/client/ui/deck/main-column.vue
@@ -7,7 +7,7 @@
</template>
</template>
- <router-view v-slot="{ Component }" class="_flat_">
+ <router-view v-slot="{ Component }" class="_fitSide_">
<transition>
<keep-alive :include="['timeline']">
<component :is="Component" :ref="changePage" @contextmenu.stop="onContextmenu"/>
diff --git a/src/client/ui/default.vue b/src/client/ui/default.vue
index 69668ff96d..3518b1a91a 100644
--- a/src/client/ui/default.vue
+++ b/src/client/ui/default.vue
@@ -13,7 +13,7 @@
</template>
<main class="main" @contextmenu.stop="onContextmenu" :style="{ background: pageInfo?.bg }">
- <div class="content" :class="{ _flat_: !fullView }">
+ <div class="content" :class="{ _fitSide_: !fullView }">
<router-view v-slot="{ Component }">
<transition :name="$store.state.animation ? 'page' : ''" mode="out-in" @enter="onTransition">
<keep-alive :include="['timeline']">