From 0117694365941c2904770ec4b2fa20bef514bdc3 Mon Sep 17 00:00:00 2001 From: David Lapshin Date: Mon, 20 May 2024 19:43:57 +0300 Subject: [PATCH] Fix breakage caused by previous commit --- sass/_nav.scss | 2 +- sass/_typography.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sass/_nav.scss b/sass/_nav.scss index 80e5014..4cb19e2 100644 --- a/sass/_nav.scss +++ b/sass/_nav.scss @@ -55,7 +55,7 @@ position: absolute; transform: translateY(-300%); z-index: 999; - background: var(--bg-color); + background: var(--bg-color), var(--primary-color); &:focus { transform: translateY(0); diff --git a/sass/_typography.scss b/sass/_typography.scss index 0820e68..53c4772 100644 --- a/sass/_typography.scss +++ b/sass/_typography.scss @@ -98,7 +98,7 @@ hr { &::after { position: relative; top: -1.5rem; - background: var(--bg-color); + background: var(--bg-color), var(--primary-color); padding: 0 0.25rem; content: "☙❧"; }