md2ui 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/style.css +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "md2ui",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "将本地 Markdown 文档转换为美观的 HTML 页面",
6
6
  "author": "",
package/src/style.css CHANGED
@@ -176,7 +176,8 @@ body {
176
176
  }
177
177
 
178
178
  .markdown-content {
179
- max-width: 880px;
179
+ width: 90%;
180
+ max-width: none;
180
181
  margin: 0 auto;
181
182
  background: #ffffff;
182
183
  padding: 64px 80px;