From 0f3e433588874916d50ac40ffd76897b33ad5061 Mon Sep 17 00:00:00 2001 From: Cade Scroggins Date: Wed, 16 Nov 2022 13:56:18 -0800 Subject: [PATCH] update command hover effect --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 1c05bce..3230a9a 100644 --- a/index.html +++ b/index.html @@ -180,6 +180,10 @@ padding: 0; } + .commands:hover { + color: var(--color-text-subtle); + } + .command { color: inherit; display: flex; @@ -198,6 +202,7 @@ transition: color var(--transition-speed); } + .command:hover .key, .command:hover .name { color: var(--color-text); }