From 6e90e849cdb2d8623840831c7fa383198ab5d067 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 2 Jan 2024 09:35:10 -0800 Subject: [PATCH] fix: more dark theme --- src/assets/styles/index.css | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css index 41eb67fb..e4772ebb 100644 --- a/src/assets/styles/index.css +++ b/src/assets/styles/index.css @@ -1074,10 +1074,8 @@ h6 > svg, color: var(--blue-400); } - a:hover, - a:focus, - a:active { - color: var(--blue-200); + a:has(svg) svg { + stroke: var(--blue-400); } .main__title a, @@ -1086,6 +1084,18 @@ h6 > svg, color: var(--white); } + a:hover, + a:focus, + a:active { + color: var(--blue-200); + } + + a:has(svg):hover svg, + a:has(svg):active svg, + a:has(svg):focus svg { + stroke: var(--blue-200); + } + hr { background-color: var(--gray-900); } @@ -1141,16 +1151,6 @@ h6 > svg, stroke: var(--white); } - a:has(svg) svg { - stroke: var(--blue-400); - } - - a:has(svg):hover svg, - a:has(svg):active svg, - a:has(svg):focus svg { - stroke: var(--blue-200); - } - /* now */ .media__grid .item__wrapper { border-color: var(--blue-400); @@ -1196,4 +1196,4 @@ h6 > svg, .post-graph__progress { background-color: var(--blue-400); } -} \ No newline at end of file +}