From bf2218065a3d90f36dffef466fe1ae0afaf9ad6f Mon Sep 17 00:00:00 2001 From: Gabriel Cozma Date: Mon, 16 Sep 2024 21:26:13 +0300 Subject: [PATCH] cleanup: make the lists' markers be the color accent Another thing inspired from Duckquill, since, well, it looks good. Duckquill one love <3 --- CHANGELOG.md | 2 ++ src/styles/_common.scss | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f674763..aa65bcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,6 +56,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed +- Make the lists' markers be the color accent + - Make grammer mistakes to have red underline - Hovering the navigation island will make it slightly bigger diff --git a/src/styles/_common.scss b/src/styles/_common.scss index 863c82f..d733f5e 100644 --- a/src/styles/_common.scss +++ b/src/styles/_common.scss @@ -141,6 +141,10 @@ mark { ul, ol { margin: 0; + + li::marker { + color: var(--color-accent); + } } ul {