Skip to content

Commit f923361

Browse files
authored
Merge pull request #238 from boostcampwm-2024/feature-html-fe
[Feature-html-fe] html lang en -> ko & ๋…ธ๋“œ ์‚ฌ์ด ์„  ์œ„์น˜ ์ˆ˜์ •
2 parents d6d46f3 + 318d505 commit f923361

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

โ€Žclient/index.htmlโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="ko">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/logo.png" />

โ€Žclient/src/konva_mindmap/utils/nodeAttrs.tsโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const TEXT_WIDTH = (depth: number) => NODE_DEFAULT_SIZE * 2 - depth * 18;
1010

1111
//CONNECTED_LINE
1212
export const CONNECTED_LINE_FROM = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 10;
13-
export const CONNECTED_LINE_TO = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 5;
13+
export const CONNECTED_LINE_TO = (depth: number) => NODE_DEFAULT_SIZE - depth * 7 + 3;
1414

1515
//TEXT
1616
export const TEXT_FONT_SIZE = 16;

0 commit comments

Comments
ย (0)