Skip to content

Commit

Permalink
chore: use apt-get in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Jun 16, 2024
1 parent 6b98c52 commit 76e2bb0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zola.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- name: Prerequisites
run: |
sudo apt install npm
sudo apt-get install -y npm
npm ci
npm run post-update
- name: Build and deploy
Expand Down
3 changes: 0 additions & 3 deletions sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ body {

.padded-content {
margin: 24px;
}

p {
color: var(--text-1);
}

Expand Down
1 change: 1 addition & 0 deletions sass/parts/_headers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ h6 {
font-family: var(--header-font);
font-size: 1.3rem;
margin-top: 1.3em;
color: var(--text-0);
}

article h1::before {
Expand Down
2 changes: 1 addition & 1 deletion sass/parts/_misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ blockquote {

a {
text-decoration: underline;
color: var(--text-1);
color: var(--text-0);
}

a:hover {
Expand Down

0 comments on commit 76e2bb0

Please sign in to comment.