diff --git a/packages/frontend/src/boot/main-boot.ts b/packages/frontend/src/boot/main-boot.ts index 70c4b61ff4..386c24c4b1 100644 --- a/packages/frontend/src/boot/main-boot.ts +++ b/packages/frontend/src/boot/main-boot.ts @@ -200,13 +200,6 @@ export async function mainBoot() { } } - if ('Notification' in window) { - // 許可を得ていなかったらリクエスト - if (Notification.permission === 'default') { - Notification.requestPermission(); - } - } - const main = markRaw(stream.useChannel('main', null, 'System')); // 自分の情報が更新されたとき diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 5d0716ef37..f199855fa6 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -1293,7 +1293,7 @@ html[data-color-scheme=light] .preview { max-width: 100%; min-width: 100%; width: 100%; - min-height: 90px; + min-height: 128px; height: 100%; } diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 87509a5dee..db67af87d1 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -222,11 +222,11 @@ export const defaultStore = markRaw(new Storage('base', { }, animation: { where: 'device', - default: !window.matchMedia('(prefers-reduced-motion)').matches, + default: false, }, animatedMfm: { where: 'device', - default: !window.matchMedia('(prefers-reduced-motion)').matches, + default: true, }, advancedMfm: { where: 'device', diff --git a/packages/frontend/src/ui/_common_/navbar.vue b/packages/frontend/src/ui/_common_/navbar.vue index 9724905e02..56c88e78fe 100644 --- a/packages/frontend/src/ui/_common_/navbar.vue +++ b/packages/frontend/src/ui/_common_/navbar.vue @@ -133,7 +133,7 @@ function more(ev: MouseEvent) {