From 8a962f1af653945abb877dc83e7524152483e9fa Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Sat, 20 Jan 2024 11:33:59 -0800 Subject: [PATCH] [website] Make links more obvious --- website/src/css/custom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 8ee63c9bea7..3d0aa4b37cd 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -45,6 +45,15 @@ display: flex; } +/* Make links more obvious */ +a { + color: blue; +} +a:hover { + color: blue; +} + + /* All header-github-link stuff borrowed with love from the docusaurus website (MIT License) configuration: * https://github.com/facebook/docusaurus/blob/6e8292da4cbb7a33bf4dfe21c50c02dc82514842/website/src/css/custom.css#L74 */