style fix & add name (#59)

This commit is contained in:
JimQing 2021-03-07 23:59:00 +08:00 committed by GitHub
parent 26edb6eb50
commit 87b8e9ea09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View File

@ -15,10 +15,9 @@
name="viewport" name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/> />
<!-- <title> <title>
<%= htmlWebpackPlugin.options.title %> <%= htmlWebpackPlugin.options.title %>
</title> --> </title>
<title>微信 Markdown 编辑器</title>
<link <link
rel="stylesheet" rel="stylesheet"
href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css"

View File

@ -7,6 +7,7 @@
position: relative; position: relative;
height: auto; height: auto;
background-color: #f7f7f7; background-color: #f7f7f7;
border-radius: 8px;
.code-snippet__line-index { .code-snippet__line-index {
display: none; display: none;

View File

@ -79,7 +79,7 @@ export default {
color: "#333", color: "#333",
"white-space": "pre", "white-space": "pre",
background: "rgb(247, 247, 247)", background: "rgb(247, 247, 247)",
"border-radius": "2px", "border-radius": "8px",
padding: "10px", padding: "10px",
"line-height": "1.5", "line-height": "1.5",
border: "1px solid rgb(236,236,236)", border: "1px solid rgb(236,236,236)",

View File

@ -1,5 +1,5 @@
{ {
"name": "uni-md", "name": "微信 Markdown 编辑器",
"appid": "", "appid": "",
"description": "", "description": "",
"versionName": "1.0.0", "versionName": "1.0.0",

View File

@ -3,7 +3,7 @@
{ {
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "" "navigationBarTitleText": "微信 Markdown 编辑器"
} }
} }
], ],