Skip to content

Commit

Permalink
Merge pull request #203 from terwer/v4.x
Browse files Browse the repository at this point in the history
fix: fix essay
  • Loading branch information
terwer committed Mar 8, 2024
2 parents 6c3d851 + ffe4402 commit 37e41db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -86,7 +86,7 @@ yarn config set registry https://registry.npmmirror.com/ --global && \
yarn config set selenium_cdnurl https://cdn.npmmirror.com/binaries/selenium --global && \
yarn config set node_inspector_cdnurl https://cdn.npmmirror.com/binaries/node-inspector --global
yarn
yarn dev
ARTALK_SERVER_URL=https://v4.terwergreen.com:8003 yarn dev
```
or simplely dev front project without step2

Expand Down
7 changes: 7 additions & 0 deletions dev.sh
@@ -1,9 +1,16 @@
#!/bin/sh

# 终止占用8008端口的进程
lsof -ti:8008 | xargs kill -9

# 终止占用3000端口的进程
lsof -ti:3000 | xargs kill -9

# sudo n 18

cd jvue-server
./mvnw clean spring-boot:run -Dspring-boot.run.profiles=dev -DskipTests &

cd ../jvue-front
ARTALK_SERVER_URL=https://v4.terwergreen.com:8003
yarn dev
4 changes: 2 additions & 2 deletions jvue-front/pages/essay.css
Expand Up @@ -18,8 +18,8 @@
.lay-blog .container .count .layblog-this{color: #FF5722 !important;}

/* start container */
.lay-blog .container-wrap{margin:0px auto 0;min-height:100%;padding:40px 0 160px 0;box-sizing: border-box;}
.lay-blog .container{width:1200px;margin:0 auto;}
.lay-blog .container-wrap{margin:0px auto 0;min-height:100%;padding:40px 0 20px 0;box-sizing: border-box;}
.lay-blog .container{margin:0 auto;}
.lay-blog .container h4{font-weight:bold;line-height:32px;font-size:16px;}
.lay-blog .container h4 p{padding-left:40px;color:#666666;}
.lay-blog .container h4 p i{font-size:26px;padding-right:10px;position:relative;top:3px;}
Expand Down

0 comments on commit 37e41db

Please sign in to comment.