PARTY_CANCEL_BUTTON TextStyle Correction

This commit is contained in:
Lugiad 2025-06-26 02:54:07 +02:00 committed by GitHub
parent 7798b8a0e1
commit 2d0d7a28a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -359,10 +359,12 @@ export function getTextStyleOptions(
switch (lang) { switch (lang) {
case "ja": case "ja":
styleOptions.fontSize = defaultFontSize - 46; styleOptions.fontSize = defaultFontSize - 46;
styleOptions.padding = { top: 16 }; styleOptions.padding = { top: 5 };
break;
default:
styleOptions.fontSize = defaultFontSize - 30;
break; break;
} }
styleOptions.fontSize = defaultFontSize - 30;
styleOptions.fontFamily = "pkmnems"; styleOptions.fontFamily = "pkmnems";
break; break;
} }