calckey_app

This commit is contained in:
ThatOneCalculator 2022-11-06 13:24:02 -08:00
parent 9f3af0afa7
commit 7beec91753
4 changed files with 4 additions and 4 deletions

View file

@ -45,7 +45,7 @@ main {
* { * {
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
} }
#misskey_app { #calckey_app {
display: none !important; display: none !important;
} }
body, body,

View file

@ -178,7 +178,7 @@
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
} }
#misskey_app, #calckey_app,
#splash { #splash {
display: none !important; display: none !important;
} }

View file

@ -16,7 +16,7 @@ main {
* { * {
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif; font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
} }
#misskey_app { #calckey_app {
display: none !important; display: none !important;
} }
body, body,

View file

@ -202,7 +202,7 @@ import { getAccountFromId } from '@/scripts/get-account-from-id';
// https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 // https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210
// なぜかinit.tsの内容が2回実行されることがあるため、mountするdivを1つに制限する // なぜかinit.tsの内容が2回実行されることがあるため、mountするdivを1つに制限する
const rootEl = (() => { const rootEl = (() => {
const MISSKEY_MOUNT_DIV_ID = 'misskey_app'; const MISSKEY_MOUNT_DIV_ID = 'calckey_app';
const currentEl = document.getElementById(MISSKEY_MOUNT_DIV_ID); const currentEl = document.getElementById(MISSKEY_MOUNT_DIV_ID);