From 73c99904cf66a1a0fbd39ede55789968865609fc Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sat, 25 Aug 2018 22:03:18 -0700 Subject: [PATCH] fix CSS specificity to fix firefox (#488) --- routes/_components/profile/AccountProfileHeader.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/_components/profile/AccountProfileHeader.html b/routes/_components/profile/AccountProfileHeader.html index b0461740..73c536e5 100644 --- a/routes/_components/profile/AccountProfileHeader.html +++ b/routes/_components/profile/AccountProfileHeader.html @@ -61,12 +61,12 @@ min-width: 0; } - :global(.account-profile-name-link) { + :global(a.account-profile-name-link) { color: var(--body-text-color); text-decoration: none; } - :global(.account-profile-name-link:hover) { + :global(a.account-profile-name-link:hover) { color: var(--body-text-color); text-decoration: underline; }