From 7ccf64584e990872a93de3778ba83a194d2155f7 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 22 Jan 2019 21:35:36 -0700 Subject: [PATCH] Fix AuthFooter CSS rules conflicting with anchors all over the app Fixes https://github.com/vector-im/riot-web/issues/8227 --- res/css/views/auth/_AuthFooter.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/res/css/views/auth/_AuthFooter.scss b/res/css/views/auth/_AuthFooter.scss index 6ad5b0a459..741be49a69 100644 --- a/res/css/views/auth/_AuthFooter.scss +++ b/res/css/views/auth/_AuthFooter.scss @@ -22,7 +22,9 @@ limitations under the License. margin: 20px 0; } -.mx_AuthFooter a:link, a:hover, a:visited { +.mx_AuthFooter a:link, +.mx_AuthFooter a:hover, +.mx_AuthFooter a:visited { color: $accent-fg-color; margin: 0 22px; }