From 1790df356e55c4fdc4dd1b5bd8d3aa0f78288816 Mon Sep 17 00:00:00 2001 From: daudix Date: Tue, 23 Jul 2024 00:03:06 +0300 Subject: [PATCH] Don't set emoji font on body, don't animate focused headings --- .woodpecker.yaml | 2 +- sass/_general.scss | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index e62ad2a..cf496ed 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -36,7 +36,7 @@ steps: publish: image: bitnami/git # Must be set in Woodpecker configuration - # mail: Your email address used by Codebrg + # mail: Your email address used by Codeberg # codeberg_token: Codeberg access token with "write:repository" permission secrets: [mail, codeberg_token] commands: diff --git a/sass/_general.scss b/sass/_general.scss index 8eb517f..328992e 100644 --- a/sass/_general.scss +++ b/sass/_general.scss @@ -26,7 +26,7 @@ body { min-height: 100vh; color: var(--fg-color); line-height: 1.6; - font-family: var(--font-system-ui), var(--font-emoji); + font-family: var(--font-system-ui); } // Style text selection to use primary color @@ -38,17 +38,10 @@ body { // Make focused anchor not get covered by nav, // and flash it with primary color when jumping to it :target:not(#main) { - animation: var(--transition-long) 1s highlight-in-out; transition: all var(--transition-longer), scroll-margin-top 0s; scroll-margin-top: 20vh; color: var(--primary-color); text-shadow: var(--primary-color-alpha) 0 0 0.25rem, var(--primary-color) 0 0 0.75rem; - - @keyframes highlight-in-out { - 50% { - letter-spacing: 0.0125em; - } - } } // Custom focus indicator