From 1d8ed4c27ecfbd761489945e0baf3db4c8b890dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 4 Mar 2023 20:23:56 +0000 Subject: [PATCH] keep the font color white for a button in the main content (#572) Inside the content, the font color of a link is changed to blue. This doesn't work well with our buttons Screenshot 2023-03-04 at 11 14 50 --- sass/pages/_content.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sass/pages/_content.scss b/sass/pages/_content.scss index 804029b7f5..5aefeba219 100644 --- a/sass/pages/_content.scss +++ b/sass/pages/_content.scss @@ -74,6 +74,10 @@ $content-font-size: 1.22rem; background-color: $syntax-theme-background-hover; } + a.button { + color: $color-white; + } + a { text-decoration: none; color: $link-color;