Fix docker configuration and fix a couple of style issues with product cards and code snippets

This commit is contained in:
Eduardo Gomez 2022-11-04 21:28:16 +01:00
parent 426c0a5514
commit 263d7938c6
4 changed files with 9 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -87,5 +87,5 @@
"desktop": "assets/screenshot-desktop.jpg", "desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg" "mobile": "assets/screenshot-mobile.jpg"
}, },
"version": "2.1.0" "version": "2.1.1"
} }

View File

@ -2,12 +2,14 @@ version: "3"
services: services:
ghost: ghost:
image: ghost:5.9.4 image: ghost:5.22.1
container_name: ghost container_name: ghost
volumes: volumes:
- ./..:/var/lib/ghost/content/themes/liebling:Z - ./..:/var/lib/ghost/content/themes/liebling:Z
- ./ghost.db:/var/lib/ghost/content/data/ghost.db:Z - ./ghost.db:/var/lib/ghost/content/data/ghost.db:Z
environment: environment:
- NODE_ENV=development NODE_ENV: development
database__client: sqlite3
database__connection__filename: content/data/ghost.db
ports: ports:
- 2368:2368 - 2368:2368

View File

@ -427,7 +427,7 @@
> code { > code {
display: block; display: block;
padding: 10px 10px 0; padding: 10px;
white-space: pre; white-space: pre;
word-spacing: normal; word-spacing: normal;
word-break: normal; word-break: normal;
@ -442,7 +442,7 @@
hyphens: none; hyphens: none;
@include respond-to("medium") { @include respond-to("medium") {
padding: 20px 20px 0; padding: 20px;
} }
} }
@ -749,6 +749,7 @@
} }
.kg-product-card-image { .kg-product-card-image {
height: auto;
margin-bottom: 0; margin-bottom: 0;
border-radius: 5px; border-radius: 5px;
} }