From 34205c9b0127289af556a06460ca8ab02b4a5a23 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Mon, 5 Jul 2021 14:58:32 -0400 Subject: [PATCH] Add hover color to settings anchor links (#1302) --- frontend/pages/admin/AppSettingsPage/_styles.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/pages/admin/AppSettingsPage/_styles.scss b/frontend/pages/admin/AppSettingsPage/_styles.scss index 83e8f015ac..dff46b45fc 100644 --- a/frontend/pages/admin/AppSettingsPage/_styles.scss +++ b/frontend/pages/admin/AppSettingsPage/_styles.scss @@ -37,6 +37,7 @@ } &__form-nav-list { + position: -webkit-sticky; position: sticky; // this is the spacing needed to make the sticky form nav position correctly when scrolling // TODO: find a way to calculate these sticky positions this and use variables. @@ -55,6 +56,10 @@ a { color: $core-fleet-black; text-decoration: none; + + &:hover { + color: $core-vibrant-blue; + } } } }