Skip to content

Commit 4f7ea9d

Browse files
committed
hotfix: スタイルの修正
1 parent fff4ab2 commit 4f7ea9d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

web/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Container = styled.section`
1111
grid-template-columns: 1fr 4fr;
1212
width: 100vw;
1313
height: 100vh;
14-
background-color: #f4f5f7;
14+
background-color: #edf2f7;
1515
overflow: hidden;
1616
`;
1717

web/src/components/GlobalStyle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const GlobalStyle = createGlobalStyle`
55
margin: 0;
66
padding: 0;
77
color: #333333;
8-
background-color: #f5f6f7;
8+
background-color: #edf2f7;
99
}
1010
1111
* {

web/src/main.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
} from "./consts/constants.ts";
1212
import {unzip} from "fflate";
1313

14-
const MAIN_CLASS_NAME = "Arrays";
14+
const MAIN_CLASS_NAME = "Instance";
1515
const MAIN_CLASS = `java/${MAIN_CLASS_NAME}.class`;
1616
const DEBUG = true;
1717

@@ -36,9 +36,8 @@ const debug = (text: string, ...args: any[]) => {
3636
if (DEBUG) {
3737
const date = new Date();
3838
console.debug(`%c[${date.toLocaleString()}] [TS] ${text}`, "color: white; background-color: #cc7722;", ...args);
39+
// dispatchEvent<ConsoleEvent>(EVENT_CONSOLE_STDOUT, {text: '[DEBUG/TS] ' + text + '\n'});
3940
}
40-
41-
dispatchEvent<ConsoleEvent>(EVENT_CONSOLE_STDOUT, {text: '[DEBUG/TS] ' + text + '\n'});
4241
}
4342

4443
const fetchAsUint8Array = async (path: string): Promise<Uint8Array> => {
@@ -104,6 +103,7 @@ const launchBJVM = async () => {
104103
* @param className
105104
*/
106105
const get_class = (className: string) => {
106+
console.log(classes[className]);
107107
return classes[className] ?? [];
108108
}
109109
(window as any).get_class = get_class;

0 commit comments

Comments
 (0)