@kobalab/liulian 1.0.1 → 1.0.2

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/ChangeLog.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### v1.0.2 / 2022-04-11
2
+
3
+ - iPhone で form がリサイズしないよう修正
4
+ - Windows用の等幅フォントを変更
5
+
1
6
  ### v1.0.1 / 2022-04-10
2
7
 
3
8
  - paiga モジュールのMサイズの指定の誤りを修正
package/css/liulian.css CHANGED
@@ -95,7 +95,7 @@ pre {
95
95
  background: #eee;
96
96
  overflow: auto;
97
97
  overflow-wrap: normal;
98
- font-family: Osaka-Mono, "HGゴシックM", "MS ゴシック", Courier, monospace;
98
+ font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Courier, monospace;
99
99
  font-size: 100%;
100
100
  }
101
101
 
@@ -133,6 +133,16 @@ div.l-footnote a[id] {
133
133
  form {
134
134
  margin: 1em auto;
135
135
  }
136
+ @media screen and (max-width: 640px) {
137
+ form {
138
+ font-size: 16px;
139
+ }
140
+ }
141
+ @media screen and (max-height: 640px) {
142
+ form {
143
+ font-size: 16px;
144
+ }
145
+ }
136
146
  fieldset {
137
147
  border: solid 1px #080;
138
148
  border-radius: 4px;
@@ -151,7 +161,7 @@ input[disabled] {
151
161
  }
152
162
  textarea {
153
163
  padding: 4px;
154
- font-family: Osaka-Mono, "HGゴシックM", "MS ゴシック", Courier, monospace;
164
+ font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Courier, monospace;
155
165
  font-size: 100%;
156
166
  border: solid 1px #999;
157
167
  border-radius: 4px;
@@ -285,7 +295,7 @@ input[type="submit"] {
285
295
  #l-mkfile input[name="filename"],
286
296
  #l-udfile input[name="filename"],
287
297
  #l-mkdir input[name="dirname"] {
288
- width: 240px;
298
+ width: 200px;
289
299
  }
290
300
  #l-udfile input[disable] {
291
301
  pointer-events: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kobalab/liulian",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Node.jsで動作するWebサイト作成ツール",
5
5
  "publishConfig": {
6
6
  "access": "public"