diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2026-01-08 21:31:44 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2026-01-08 21:31:44 +0900 |
| commit | ee0eeb052f28abd5e00ed56e5b38149b08af6243 (patch) | |
| tree | 4936ebdb85d9669ee7863d930a39f008a3f294fc | |
| parent | fix(frontend): mfmFunctionPickerを使用して挿入する際のハンドリ... (diff) | |
| download | misskey-ee0eeb052f28abd5e00ed56e5b38149b08af6243.tar.gz misskey-ee0eeb052f28abd5e00ed56e5b38149b08af6243.tar.bz2 misskey-ee0eeb052f28abd5e00ed56e5b38149b08af6243.zip | |
🎨
| -rw-r--r-- | packages/frontend/src/components/global/StackingRouterView.vue | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/packages/frontend/src/components/global/StackingRouterView.vue b/packages/frontend/src/components/global/StackingRouterView.vue index d52dd9b89d..689954189d 100644 --- a/packages/frontend/src/components/global/StackingRouterView.vue +++ b/packages/frontend/src/components/global/StackingRouterView.vue @@ -171,12 +171,6 @@ router.useListener('replace', ({ fullPath }) => { width: 100%; height: 100%; } - - .tabContent { - position: relative; - width: 100%; - height: 100%; - } } &:not(:first-child) { @@ -209,13 +203,17 @@ router.useListener('replace', ({ fullPath }) => { .tabContent { flex: 1; - width: 100%; - height: 100%; - background: var(--MI_THEME-bg); } } } +.tabContent { + position: relative; + width: 100%; + height: 100%; + background: var(--MI_THEME-bg); +} + .tabMenu { position: relative; margin-left: auto; |