@fmsim/fmsim 1.0.51 → 1.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/_index.html CHANGED
@@ -48,20 +48,39 @@
48
48
  <meta property="og:site_name" content="Fmsim, Factory Layout View." />
49
49
  <meta property="og:image" content="/assets/manifest/image-metaog.png" />
50
50
 
51
+ <!-- webfonts : Pretendard, SUIT -->
52
+ <link rel="preconnect" href="https://cdn.jsdelivr.net" />
53
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" />
54
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/static/woff2/SUIT.css" />
55
+
56
+ <!-- google webfonts -->
57
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
58
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
59
+ <link
60
+ href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
61
+ rel="stylesheet"
62
+ />
63
+
51
64
  <!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
52
- <!-- <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin /> -->
53
65
  <link href="/fmsim/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
54
66
  <link href="/fmsim/node_modules/material-symbols/index.css" rel="stylesheet" />
55
67
  <link href="/fmsim/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
56
68
 
57
69
  <!-- Add any global styles for body, document, etc. -->
58
70
  <style>
71
+ html {
72
+ /* This is a font-stack that tries to use the system-default sans-serifs first */
73
+ /* font-family: 'Noto Sans KR', sans-serif; */
74
+ /* font-family: 'SUIT', 'Roboto', sans-serif; */
75
+ /* font-family: 'Pretendard', 'Segoe UI', sans-serif; */
76
+ --scene-theme-font-family: 'SUIT', 'Segoe UI', sans-serif;
77
+ }
78
+
79
+ html,
59
80
  body {
60
81
  margin: 0;
61
82
  padding: 0;
62
83
  overflow: hidden;
63
-
64
- /* This is a font-stack that tries to use the system-default sans-serifs first */
65
84
  font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
66
85
  line-height: 1.5;
67
86
  -webkit-font-smoothing: antialiased;
@@ -0,0 +1,13 @@
1
+ html,
2
+ body {
3
+ margin: 0;
4
+ padding: 0;
5
+ overflow: hidden;
6
+
7
+ overscroll-behavior-y: none;
8
+
9
+ line-height: 1.5;
10
+ -webkit-font-smoothing: antialiased;
11
+
12
+ accent-color: var(--primary-color);
13
+ }