From c22a91f394dc7f6abaae3404b46d4d913bc8a4eb Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Sat, 4 Nov 2023 18:15:36 +0300 Subject: [PATCH] chore: Update CI --- .woodpecker.yml | 16 ++++++++-------- content/_index.md | 2 +- sass/_main.scss | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index c0c8f6f..0ef8caa 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,18 +1,18 @@ clone: git: - image: bash + image: fish commands: - - cd /home/daudix - - if [ -d .exoci/duckquill ]; then - - cd .exoci/duckquill + - cd ~/.exoci + - if [ -d duckquill ]; then + - cd duckquill - git pull - else - - git clone https://git.exozy.me/daudix/duckquill.git .exoci/duckquill + - git clone https://git.exozy.me/daudix/duckquill.git - fi pipeline: build: - image: bash + image: fish commands: - - cd /home/daudix/.exoci/duckquill - - ~/.nix-profile/bin/zola build --output-dir /srv/http/pages/duckquill --force + - cd ~/.exoci/duckquill + - zola build --output-dir /srv/http/pages/duckquill --force diff --git a/content/_index.md b/content/_index.md index 818ac64..69faa66 100644 --- a/content/_index.md +++ b/content/_index.md @@ -94,7 +94,7 @@ stylesheets = [ Then, paste the following code inside `sass/custom.scss` (inside your site, not the theme): -```sass +```scss @use "sass:color"; $primary-color: #HEX_COLOR_CODE; diff --git a/sass/_main.scss b/sass/_main.scss index 8b76e44..21b7185 100644 --- a/sass/_main.scss +++ b/sass/_main.scss @@ -105,10 +105,10 @@ a { text-decoration: none; color: var(--primary-color); cursor: pointer; -} -a:hover { - text-decoration: underline; + &:hover { + text-decoration: underline; + } } b,