diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-03 20:30:58 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-03 20:30:58 +0900 |
| commit | 1163c85db640200e297292853e52510df7b59b12 (patch) | |
| tree | 02929b4d85622e271c041228b4632bb5218afff6 /packages/client/src/ui/_common_ | |
| parent | fix(client): contextmenu of deck not working (diff) | |
| download | misskey-1163c85db640200e297292853e52510df7b59b12.tar.gz misskey-1163c85db640200e297292853e52510df7b59b12.tar.bz2 misskey-1163c85db640200e297292853e52510df7b59b12.zip | |
enhance(client): refine deck
Fix #7720
Diffstat (limited to 'packages/client/src/ui/_common_')
| -rw-r--r-- | packages/client/src/ui/_common_/statusbars.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/client/src/ui/_common_/statusbars.vue b/packages/client/src/ui/_common_/statusbars.vue index 11912e141b..7b3a68ec45 100644 --- a/packages/client/src/ui/_common_/statusbars.vue +++ b/packages/client/src/ui/_common_/statusbars.vue @@ -4,7 +4,8 @@ verySmall: defaultStore.reactiveState.statusbarSize.value === 'verySmall', small: defaultStore.reactiveState.statusbarSize.value === 'small', medium: defaultStore.reactiveState.statusbarSize.value === 'medium', - large: defaultStore.reactiveState.statusbarSize.value === 'large' + large: defaultStore.reactiveState.statusbarSize.value === 'large', + veryLarge: defaultStore.reactiveState.statusbarSize.value === 'veryLarge', }" > <div v-for="x in defaultStore.reactiveState.statusbars.value" :key="x.id" class="item" :class="{ black: x.black }"> @@ -46,6 +47,11 @@ const XUserList = defineAsyncComponent(() => import('./statusbar-user-list.vue') font-size: 0.875em; } + &.veryLarge { + --height: 30px; + font-size: 0.9em; + } + > .item { display: inline-flex; vertical-align: bottom; |