Skip to content

Commit

Permalink
Fix fatal error due a file with parsing errors and fix input forms st…
Browse files Browse the repository at this point in the history
…yles
  • Loading branch information
eddiesigner committed Feb 11, 2023
1 parent 77e08e1 commit f7b1f8c
Show file tree
Hide file tree
Showing 5 changed files with 15 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 locales/ko.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"% min read": "% 분 길이,
"% min read": "% 분 길이",
"% posts": "% 개 게시물",
"1 min read": "1 분 길이",
"1 post": "1 개 게시물",
Expand Down
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.2"
"version": "2.1.3"
}
2 changes: 1 addition & 1 deletion src/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
ghost:
image: ghost:5.22.10
image: ghost:5.33.8
container_name: ghost
volumes:
- ./..:/var/lib/ghost/content/themes/liebling:Z
Expand Down
13 changes: 11 additions & 2 deletions src/sass/layouts/_post-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,13 @@
}
}

input:not(.kg-video-card input):not(.kg-audio-card input),
label {
display: block;
font-size: 1.125rem;
margin-bottom: 12px;
}

input:not([type="radio"]):not([type="checkbox"]):not(.kg-video-card input):not(.kg-audio-card input),
textarea,
select {
margin-bottom: 20px;
Expand All @@ -481,8 +487,11 @@
}

button:not(.m-icon-button):not(.kg-video-card button):not(.kg-audio-card button):not(.kg-toggle-card button) {
border: 1px solid var(--primary-foreground-color) !important;
@extend .m-button;

&:not(.primary) {
@extend .outlined;
}
}

.kg-bookmark-card {
Expand Down

0 comments on commit f7b1f8c

Please sign in to comment.