Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin'
Browse files Browse the repository at this point in the history
  • Loading branch information
RoneoOrg committed Mar 31, 2022
2 parents dc6da44 + 363756f commit 24de55d
Show file tree
Hide file tree
Showing 42 changed files with 347 additions and 165 deletions.
12 changes: 0 additions & 12 deletions .github/FUNDING.yml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
- exampleSite
workflow_dispatch:
# manual run
inputs:
hugoVersion:
description: "Hugo Version"
required: false
default: "0.83.0"

jobs:
build:
Expand All @@ -26,7 +31,7 @@ jobs:
- name: Setup hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.83.0'
hugo-version: "${{ github.event.inputs.hugoVersion }}"

- name: Build
run: hugo --buildDrafts --gc --verbose --minify
13 changes: 9 additions & 4 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@ name: Build GH-Pages
on:
push:
paths-ignore:
- 'images/**'
- 'LICENSE'
- 'README.md'
- "images/**"
- "LICENSE"
- "README.md"
branches:
- master
- exampleSite
workflow_dispatch:
# manual run
inputs:
hugoVersion:
description: "Hugo Version"
required: false
default: "0.83.0"

jobs:
deploy:
Expand All @@ -30,7 +35,7 @@ jobs:
- name: Setup hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.83.0'
hugo-version: "${{ github.event.inputs.hugoVersion }}"

- name: Build
run: hugo --buildDrafts --gc --verbose --minify
Expand Down
7 changes: 3 additions & 4 deletions assets/css/common/post-single.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@
border-radius: var(--radius);
}

.post-content .highlight:not(table),
.post-content pre {
.post-content .highlight:not(table) {
margin: 10px auto;
background: var(--hljs-bg) !important;
border-radius: var(--radius);
Expand Down Expand Up @@ -207,8 +206,8 @@
margin: auto 0;
padding: 10px;
color: rgb(213, 213, 214);
background: 0 0;
border-radius: 0;
background: var(--hljs-bg) !important;
border-radius: var(--radius);
overflow-x: auto;
word-break: break-all;
}
Expand Down
9 changes: 9 additions & 0 deletions assets/js/fuse.basic.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 24de55d

Please sign in to comment.