Skip to content

Commit

Permalink
Fix docker configuration and fix a couple of style issues with produc…
Browse files Browse the repository at this point in the history
…t cards and code snippets
  • Loading branch information
eddiesigner committed Nov 4, 2022
1 parent 426c0a5 commit 263d793
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/css/post.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"version": "2.1.0"
"version": "2.1.1"
}
6 changes: 4 additions & 2 deletions src/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ version: "3"

services:
ghost:
image: ghost:5.9.4
image: ghost:5.22.1
container_name: ghost
volumes:
- ./..:/var/lib/ghost/content/themes/liebling:Z
- ./ghost.db:/var/lib/ghost/content/data/ghost.db:Z
environment:
- NODE_ENV=development
NODE_ENV: development
database__client: sqlite3
database__connection__filename: content/data/ghost.db
ports:
- 2368:2368
5 changes: 3 additions & 2 deletions src/sass/layouts/_post-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@

> code {
display: block;
padding: 10px 10px 0;
padding: 10px;
white-space: pre;
word-spacing: normal;
word-break: normal;
Expand All @@ -442,7 +442,7 @@
hyphens: none;

@include respond-to("medium") {
padding: 20px 20px 0;
padding: 20px;
}
}

Expand Down Expand Up @@ -749,6 +749,7 @@
}

.kg-product-card-image {
height: auto;
margin-bottom: 0;
border-radius: 5px;
}
Expand Down

0 comments on commit 263d793

Please sign in to comment.