From c2e59f2e327bbf716b96a8c30aa77f6925d2f49a Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 10 Apr 2024 23:30:45 -0400 Subject: [PATCH] Have links and button inherit their text color --- resources/sass/app.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/sass/app.scss b/resources/sass/app.scss index 0c2110d..d2531c1 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -61,6 +61,14 @@ body { width: 100%; color: $c-text; -webkit-overflow-scrolling: touch; + + a, button { + color: inherit; + + &:hover, &:focus { + color: inherit; + } + } } .page-container {